Skip to content

Commit

Permalink
Ignore false positive from mypy.
Browse files Browse the repository at this point in the history
  • Loading branch information
samcunliffe committed Dec 21, 2023
1 parent eb126c7 commit 5a3de63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wazp/callbacks/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,8 +662,8 @@ def generate_yaml_files_from_spreadsheet(
# convert all fields in dataframe to strings
# (otherwise datetime fields are not encoded correctly in the YAML)
df = df.applymap(str) # type: ignore[operator]
# TODO: remove ignore comment 👆 if we update the linter job to 3.11
# with newer pandas-stubs
# TODO: remove mypy ignore comment 👆 if we update the linter job to
# 3.11 with newer pandas-stubs version

# check if columns in spreadsheet match metadata file:
# if not, add missing columns
Expand Down

0 comments on commit 5a3de63

Please sign in to comment.