Skip to content

Commit

Permalink
fix: fix isort issues
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 committed Nov 27, 2023
1 parent 356a1eb commit fdc8d7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions app/taxonomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
from app._types import JSONType
from app.config import settings
from app.utils import get_logger
from app.utils.download import (download_file, http_session,
should_download_file)
from app.utils.download import download_file, http_session, should_download_file
from app.utils.io import load_json

DEFAULT_CACHE_DIR = settings.taxonomy_cache_dir.expanduser()
Expand Down
7 changes: 5 additions & 2 deletions tests/unit/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@

from app._types import JSONType
from app.config import Config
from app.query import (UnknownOperationRemover, build_search_query,
parse_lucene_dsl_query)
from app.query import (
UnknownOperationRemover,
build_search_query,
parse_lucene_dsl_query,
)
from app.utils.io import dump_json, load_json

DATA_DIR = Path(__file__).parent / "data"
Expand Down

0 comments on commit fdc8d7f

Please sign in to comment.