re-order imports

This commit is contained in:
Matthias Bisping 2022-05-09 14:52:07 +02:00
parent 5b913983eb
commit 453281d48d

View File

@ -1,17 +1,15 @@
import logging import logging
from itertools import chain from itertools import chain
from typing import Union, Any
from funcy import flatten, compose, compact from funcy import flatten, compose, compact
from pyinfra.server.dispatcher.dispatcher import Nothing
from pyinfra.utils.buffer import bufferize from pyinfra.utils.buffer import bufferize
from pyinfra.utils.func import lift from pyinfra.utils.func import lift
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
from typing import Union, Any
from pyinfra.server.dispatcher.dispatcher import Nothing
class OnDemandProcessor: class OnDemandProcessor:
def __init__(self, fn): def __init__(self, fn):