Skip to content

Commit

Permalink
[cdd/{shared/defaults_utils.py,sqlalchemy/utils/parse_utils.py,tests/…
Browse files Browse the repository at this point in the history
…test_sqlalchemy/test_parse_sqlalchemy_utils.py}] `autoflake -r -i --remove-all-unused-imports . ; isort . ; python -m black . ; test -f 'cdd/tests/mocks/cstify.py' && git checkout -- "$_" || true`
  • Loading branch information
SamuelMarks committed Mar 15, 2024
1 parent c4fe8e2 commit d9d4dc0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion cdd/shared/defaults_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
from operator import contains, eq
from typing import Dict

from cdd.shared.pure_utils import PY_GTE_3_8, PY_GTE_3_9
from cdd.shared.pure_utils import (
PY_GTE_3_8,
PY_GTE_3_9,
count_iter_items,
location_within,
none_types,
Expand Down
9 changes: 7 additions & 2 deletions cdd/sqlalchemy/utils/parse_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@

import cdd.shared.ast_utils
import cdd.shared.source_transformer
from cdd.shared.pure_utils import PY_GTE_3_8
from cdd.shared.pure_utils import append_to_dict, indent_all_but_first, rpartial, tab
from cdd.shared.pure_utils import (
PY_GTE_3_8,
append_to_dict,
indent_all_but_first,
rpartial,
tab,
)

if PY_GTE_3_8:
from cdd.shared.pure_utils import FakeConstant as Str
Expand Down
1 change: 0 additions & 1 deletion cdd/tests/test_sqlalchemy/test_parse_sqlalchemy_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from unittest import TestCase

from cdd.shared.ast_utils import set_value
from cdd.shared.pure_utils import pp
from cdd.sqlalchemy.utils.parse_utils import (
column_call_name_manipulator,
column_call_to_param,
Expand Down

0 comments on commit d9d4dc0

Please sign in to comment.