Skip to content

Commit

Permalink
style: ignore pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Jun 14, 2024
1 parent fdab8fe commit 63e23a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/polartoolkit/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -2788,7 +2788,7 @@ def preprocessing(fname: str, action: str, _pooch2: typing.Any) -> str:
# reproject to polar stereographic
grid2 = pygmt.grdproject(
grid,
projection=proj,
projection=proj, # pylint: disable=possibly-used-before-assignment
spacing=initial_spacing,
)
# get just antarctica region
Expand All @@ -2804,7 +2804,7 @@ def preprocessing(fname: str, action: str, _pooch2: typing.Any) -> str:

path = pooch.retrieve(
url="doi:10.5281/zenodo.5882204/earth-geoid-10arcmin.nc",
fname=fname,
fname=fname, # pylint: disable=possibly-used-before-assignment
path=f"{pooch.os_cache('pooch')}/polartoolkit/geoid",
known_hash="e98dd544c8b4b8e5f11d1a316684dfbc2612e2860af07b946df46ed9f782a0f6",
progressbar=True,
Expand Down

0 comments on commit 63e23a5

Please sign in to comment.