diff --git a/tractor/_clustering.py b/tractor/_clustering.py index 93562fe..46224d6 100644 --- a/tractor/_clustering.py +++ b/tractor/_clustering.py @@ -19,10 +19,13 @@ Actor cluster helpers. ''' from __future__ import annotations - -from contextlib import asynccontextmanager as acm +from contextlib import ( + asynccontextmanager as acm, +) from multiprocessing import cpu_count -from typing import AsyncGenerator, Optional +from typing import ( + AsyncGenerator, +) import trio import tractor