Skip to content

Commit

Permalink
chore: update annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabiana Clemente authored and Fabiana Clemente committed May 7, 2024
1 parent 853c370 commit 0ecb06f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ jobs:
- name: Install
run: make install

- name: Lint
run: make lint

- name: Build package
run: make package version=${{ steps.version.outputs.value }}
Expand Down
4 changes: 2 additions & 2 deletions src/ydata_profiling/utils/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@


class ProfilingLogger(logging.Logger):
def __init__(self, name, level=logging.INFO):
def __init__(self, name: str, level: int =logging.INFO):
super().__init__(name, level)

def info_def_report(self, dataframe, timeseries: bool):
def info_def_report(self, dataframe, timeseries: bool) -> None: # type: ignore
if dataframe is pd.DataFrame:
dataframe = "pandas"
report_type = "regular"
Expand Down

0 comments on commit 0ecb06f

Please sign in to comment.