format
Some checks failed
checks-impure / test (pull_request) Successful in 1m26s
checks / test (pull_request) Failing after 1m32s

This commit is contained in:
Johannes Kirschbauer 2023-11-04 09:16:37 +01:00
parent fec748fbfd
commit 6188957b65
Signed by: hsjobeki
GPG Key ID: F62ED8B8BF204685

View File

@ -158,7 +158,6 @@ class TaskPool:
def __init__(self) -> None:
self.lock: threading.RLock = threading.RLock()
self.pool: dict[UUID, BaseTask] = {}
def __getitem__(self, uuid: UUID) -> BaseTask:
with self.lock: