This commit is contained in:
Matthias Bisping 2022-05-10 12:19:42 +02:00
parent 83ce7692e6
commit de0deaa2f4
6 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ from typing import Union, Any
from funcy import flatten, compose
from pyinfra.server.dispatcher.dispatcher import Nothing
from pyinfra.server.processor.buffer import bufferize
from pyinfra.server.bufferizer.buffer import bufferize
from pyinfra.utils.func import lift
logger = logging.getLogger(__name__)

View File

@ -5,7 +5,7 @@ from flask import Flask, jsonify, request
from funcy import rcompose, compose, first, chunks, flatten
from pyinfra.server.dispatcher.dispatcher import Nothing
from pyinfra.server.processor.lazy_bufferizer import LazyBufferizer
from pyinfra.server.bufferizer.lazy_bufferizer import LazyBufferizer
from pyinfra.server.utils import unpack, normalize, pack
from pyinfra.utils.func import starlift, lift

View File

@ -1,7 +1,7 @@
from funcy import compose, lmapcat, compact, flatten
from pyinfra.server.dispatcher.dispatcher import Nothing
from pyinfra.server.processor.buffer import bufferize
from pyinfra.server.bufferizer.buffer import bufferize
def test_buffer():

View File

@ -4,7 +4,7 @@ import pytest
from funcy import repeatedly
from pyinfra.server.dispatcher.dispatcher import Nothing
from pyinfra.server.processor.lazy_bufferizer import LazyBufferizer
from pyinfra.server.bufferizer.lazy_bufferizer import LazyBufferizer
from pyinfra.utils.func import lift