format code

This commit is contained in:
Denis-Cosmin NUTIU 2023-06-03 16:23:53 +03:00
parent 60875fac71
commit f8e1d39e52
3 changed files with 3 additions and 7 deletions

View file

@ -1,6 +1,5 @@
from abc import ABCMeta, abstractmethod from abc import ABCMeta, abstractmethod
from pathlib import Path from pathlib import Path
from typing import Callable
from app import utils from app import utils

View file

@ -1,4 +1,4 @@
from app.config import ConverterOptions, Configurator from app.config import Configurator, ConverterOptions
def make_fake_configurator(converter: str, converter_options: ConverterOptions): def make_fake_configurator(converter: str, converter_options: ConverterOptions):

View file

@ -1,10 +1,7 @@
import pytest import pytest
from app.utils import ( from app.utils import (guard_against_none, guard_against_none_or_empty_str,
guard_against_none, key_error_silence)
guard_against_none_or_empty_str,
key_error_silence,
)
def test_key_error_silence(): def test_key_error_silence():