Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-cartwright committed Dec 22, 2023
1 parent 20886a6 commit 0a481cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions datahub-classify/src/datahub_classify/infotype_predictor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@

from datahub_classify.constants import EXCLUDE_NAME
from datahub_classify.helper_classes import ColumnInfo, InfotypeProposal
from datahub_classify.infotype_utils import strip_formatting
from datahub_classify.infotype_utils import perform_basic_checks
from datahub_classify.infotype_utils import perform_basic_checks, strip_formatting

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion datahub-classify/src/datahub_classify/infotype_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from typing import Any, Dict, List

from datahub_classify.constants import (
PREDICTION_FACTORS_AND_WEIGHTS,
EXCLUDE_NAME,
PREDICTION_FACTORS_AND_WEIGHTS,
VALUES,
)
from datahub_classify.helper_classes import Metadata
Expand Down
1 change: 1 addition & 0 deletions datahub-classify/tests/test_info_type_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
exclude_name_test_config,
none_exclude_name_test_config,
)

from datahub_classify.helper_classes import ColumnInfo, Metadata
from datahub_classify.infotype_utils import perform_basic_checks, strip_formatting

Expand Down

0 comments on commit 0a481cb

Please sign in to comment.