From 1b9262521a0c4e5b945bf95d9d04b8fd0235d3ac Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Mon, 6 Jan 2025 12:05:56 +0000 Subject: [PATCH] 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] --- distributed/shuffle/_rechunk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distributed/shuffle/_rechunk.py b/distributed/shuffle/_rechunk.py index cd47d49508..8b597f79e4 100644 --- a/distributed/shuffle/_rechunk.py +++ b/distributed/shuffle/_rechunk.py @@ -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,