diff options
| author | Scott <[email protected]> | 2022-02-02 13:09:30 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-02-02 13:09:30 -0800 |
| commit | 6ba90a1f30f1c0cf4df12fcd0c62181f29bc3668 (patch) | |
| tree | 6c4d558173ed76df50f7b2f88af8f99119d932ab /collect/shared_dict.py | |
| parent | 31c81f6539969a5eba864d3305f9fb7bf716a367 (diff) | |
Make subdirs type clean too.
Diffstat (limited to 'collect/shared_dict.py')
| -rw-r--r-- | collect/shared_dict.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/collect/shared_dict.py b/collect/shared_dict.py index 0d8e7c2..7c84c14 100644 --- a/collect/shared_dict.py +++ b/collect/shared_dict.py @@ -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, ) |
