Skip to content

Commit d11d16f

Browse files
authored
Merge pull request #5350 from wxtim/fix_mypy
fix mypy fail caused by python/mypy#13969
2 parents ca9952a + 4eccc50 commit d11d16f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cylc/flow/network/client_factory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_runtime_client(
5151
if comms_method == CommsMeth.SSH:
5252
from cylc.flow.network.ssh_client import WorkflowRuntimeClient
5353
else:
54-
from cylc.flow.network.client import ( # type: ignore[no-redef]
54+
from cylc.flow.network.client import ( # type: ignore[assignment]
5555
WorkflowRuntimeClient
5656
)
5757
return WorkflowRuntimeClient(workflow, timeout=timeout)

0 commit comments

Comments
 (0)