Skip to content

Commit

Permalink
chore: Use black profile for isort
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 25, 2023
1 parent 846d402 commit 5bf71c8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
15 changes: 12 additions & 3 deletions extension_explorer/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,18 @@
from flask_env import MetaFlaskEnv
from werkzeug.exceptions import NotFound

from .util import (get_codelist_tables, get_extension_explorer_data_filename, get_extensions,
get_present_and_historical_versions, get_removed_fields, get_schema_tables, highlight_json,
identify_headings, markdown, set_tags)
from .util import (
get_codelist_tables,
get_extension_explorer_data_filename,
get_extensions,
get_present_and_historical_versions,
get_removed_fields,
get_schema_tables,
highlight_json,
identify_headings,
markdown,
set_tags,
)

LANGS = {
'en': 'English',
Expand Down
14 changes: 11 additions & 3 deletions tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@

import pytest

from extension_explorer.util import (get_codelist_tables, get_extensions, get_present_and_historical_versions,
get_removed_fields, get_schema_tables, highlight_json, identify_headings,
markdown, set_tags)
from extension_explorer.util import (
get_codelist_tables,
get_extensions,
get_present_and_historical_versions,
get_removed_fields,
get_schema_tables,
highlight_json,
identify_headings,
markdown,
set_tags,
)

extension_version_template = {
"id": "template",
Expand Down

0 comments on commit 5bf71c8

Please sign in to comment.