Skip to content

Commit

Permalink
Remove unused "type: ignore" comment (#8976)
Browse files Browse the repository at this point in the history
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]
  • Loading branch information
cjwatson authored Jan 6, 2025
1 parent 8f1b241 commit 1b92625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/shuffle/_rechunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ def partial_concatenate(
)
rec_cat_arg[old_partial_index] = t.ref()
else:
rec_cat_arg[old_partial_index] = TaskRef((input_name,) + old_global_index) # type: ignore[call-overload]
rec_cat_arg[old_partial_index] = TaskRef((input_name,) + old_global_index)

concat_task = Task(
(rechunk_name(token),) + global_new_index,
Expand Down

0 comments on commit 1b92625

Please sign in to comment.