re-format code

This commit is contained in:
Denis-Cosmin Nutiu 2023-05-31 18:32:42 +03:00
parent a524db1722
commit da4f678ca6
5 changed files with 6 additions and 9 deletions

View file

@ -1,6 +1,6 @@
# Formats the code
format:
black . && isort -r .
autoflake --exclude venv -ri . && black . && isort -r .
# Run tests
test:
pytest .

View file

@ -1,7 +1,7 @@
import os
import yaml
from pydantic import BaseSettings, BaseModel
from pydantic import BaseModel, BaseSettings
def yaml_config_settings_source(settings: BaseSettings):

View file

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

View file

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

View file

@ -1,5 +1,4 @@
import logging
import sys
from app.config import Configurator
from app.converter import Converter