format code
This commit is contained in:
parent
60875fac71
commit
f8e1d39e52
3 changed files with 3 additions and 7 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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):
|
||||||
|
|
|
@ -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():
|
||||||
|
|
Loading…
Reference in a new issue