Skip to content

Commit

Permalink
Removing commented-out code (1 obsolete line and 3 debugging).
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Nov 30, 2021
1 parent 2032a1a commit 3a3c91c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/awkward/_v2/operations/structure/ak_concatenate.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,6 @@ def action(inputs, depth, **kwargs):
for x in inputs:
if x.is_OptionType and x.content.is_ListType:
nextinputs.append(fill_none(x, [], axis=0, highlevel=False))
# print("v2")
# print(nextinputs)
# print("v2")
else:
nextinputs.append(x)
inputs = nextinputs
Expand Down
1 change: 0 additions & 1 deletion tests/v2/test_0072-fillna-operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ def test_fillna_unionarray():
]


# @pytest.mark.skip(reason="Fill_none not implemented.")
def test_highlevel():
array = ak.Array([[1.1, 2.2, None, 3.3], [], [4.4, None, 5.5]])

Expand Down

0 comments on commit 3a3c91c

Please sign in to comment.