Skip to content

Commit

Permalink
lint: flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
paxcema committed Dec 21, 2023
1 parent 84bbefa commit 2466b8e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion type_infer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
__version__ = '0.0.18'


__all__ = ['base', 'dtype', 'api.py', 'helpers', '__version__']
__all__ = ['base', 'dtype', 'api', 'helpers', '__version__']
2 changes: 1 addition & 1 deletion type_infer/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _sample_data(df: pd.DataFrame) -> pd.DataFrame:

def infer_types(
data: pd.DataFrame,
#TODO: method: InferenceEngine = Union[InferenceEngine.RuleBased, InferenceEngine.BERT],
# TODO: method: InferenceEngine = Union[InferenceEngine.RuleBased, InferenceEngine.BERT],
pct_invalid: float,
seed_nr: int = 420,
mp_cutoff: int = 1e4,
Expand Down
1 change: 0 additions & 1 deletion type_infer/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from typing import Iterable

import numpy as np
from type_infer.dtype import dtype


def initialize_log():
Expand Down
1 change: 0 additions & 1 deletion type_infer/rule_based/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
nltk.download('stopwords', quiet=True)



def get_identifier_description_mp(arg_tup):
data, column_name, data_dtype = arg_tup
return get_identifier_description(data, column_name, data_dtype)
Expand Down

0 comments on commit 2466b8e

Please sign in to comment.