summaryrefslogtreecommitdiff
path: root/collect
diff options
context:
space:
mode:
Diffstat (limited to 'collect')
l---------collect/pyproject.toml1
-rw-r--r--collect/shared_dict.py11
2 files changed, 11 insertions, 1 deletions
diff --git a/collect/pyproject.toml b/collect/pyproject.toml
new file mode 120000
index 0000000..1e11d78
--- /dev/null
+++ b/collect/pyproject.toml
@@ -0,0 +1 @@
+../pyproject.toml \ No newline at end of file
diff --git a/collect/shared_dict.py b/collect/shared_dict.py
index e0a42f2..f4ec914 100644
--- a/collect/shared_dict.py
+++ b/collect/shared_dict.py
@@ -31,7 +31,16 @@ import pickle
from contextlib import contextmanager
from functools import wraps
from multiprocessing import RLock, shared_memory
-from typing import Any, Dict, Generator, ItemsView, Iterator, KeysView, Optional, ValuesView
+from typing import (
+ Any,
+ Dict,
+ Generator,
+ ItemsView,
+ Iterator,
+ KeysView,
+ Optional,
+ ValuesView,
+)
from decorator_utils import synchronized