Skip to content

Commit 34446c5

Browse files
committed
mypy
1 parent 462ff51 commit 34446c5

File tree

1 file changed

+2
-2
lines changed
  • services/autoscaling/src/simcore_service_autoscaling/modules

1 file changed

+2
-2
lines changed

services/autoscaling/src/simcore_service_autoscaling/modules/dask.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ def _list_on_scheduler(
149149
) | {DASK_WORKER_THREAD_RESOURCE_NAME: 1}
150150

151151
return DaskClusterTasks(
152-
processing=dict(worker_to_processing_tasks),
153-
unrunnable=unrunnable_tasks,
152+
processing=worker_to_processing_tasks, # type: ignore[typeddict-item]
153+
unrunnable=unrunnable_tasks, # type: ignore[typeddict-item]
154154
)
155155

156156
list_of_tasks: DaskClusterTasks = await client.run_on_scheduler(_list_on_scheduler)

0 commit comments

Comments
 (0)