Skip to content

Commit

Permalink
Add mypy ignore lines to __main__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
iainrussell committed Aug 18, 2023
1 parent c2a56a2 commit d4e003c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cfgrib/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ def dump(inpaths, variable, cdm, engine):
ds = cf2cdm.translate_coords(ds, coord_model=coord_model)

if variable:
ds_or_da = ds[variable]
ds_or_da = ds[variable] # type: ignore
else:
ds_or_da = ds
ds_or_da = ds # type: ignore

print(ds_or_da)

Expand Down

0 comments on commit d4e003c

Please sign in to comment.