Make subdirs type clean too.
[python_utils.git] / collect / shared_dict.py
index 0d8e7c2f7a36aa5ddb7c54c72aecddbf56df71c3..7c84c14c073743ea1e452d58393f8f29d280ed23 100644 (file)
@@ -30,14 +30,14 @@ This class is based on https://github.com/luizalabs/shared-memory-dict
 import pickle
 from contextlib import contextmanager
 from functools import wraps
-from multiprocessing import shared_memory, RLock
+from multiprocessing import RLock, shared_memory
 from typing import (
     Any,
     Dict,
     Generator,
-    KeysView,
     ItemsView,
     Iterator,
+    KeysView,
     Optional,
     ValuesView,
 )