diff options
| author | Scott Gasch <[email protected]> | 2022-02-10 14:10:48 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-10 14:10:48 -0800 |
| commit | f2600f30801c849fc1d139386e3ddc3c9eb43e30 (patch) | |
| tree | 74c5173bf47322bcfbbd2985adfb54741cf3c4cc /collect/shared_dict.py | |
| parent | 415c2c91972ea5a574dce166ec609926dcf19d73 (diff) | |
More cleanup.
Diffstat (limited to 'collect/shared_dict.py')
| -rw-r--r-- | collect/shared_dict.py | 11 |
1 files changed, 10 insertions, 1 deletions
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 |
