Skip to content

Commit 1b92625

Browse files
authored
Remove unused "type: ignore" comment (#8976)
The underlying problem here seems to have been fixed at some point, since mypy complained: distributed/shuffle/_rechunk.py:756: error: Unused "type: ignore" comment [unused-ignore]
1 parent 8f1b241 commit 1b92625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distributed/shuffle/_rechunk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ def partial_concatenate(
753753
)
754754
rec_cat_arg[old_partial_index] = t.ref()
755755
else:
756-
rec_cat_arg[old_partial_index] = TaskRef((input_name,) + old_global_index) # type: ignore[call-overload]
756+
rec_cat_arg[old_partial_index] = TaskRef((input_name,) + old_global_index)
757757

758758
concat_task = Task(
759759
(rechunk_name(token),) + global_new_index,

0 commit comments

Comments
 (0)