Skip to content

Commit

Permalink
fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
sliu008 committed Jan 2, 2024
1 parent 8bf51d0 commit 6facf4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podaac/subsetter/subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ def subset_with_shapefile(dataset: xr.Dataset,
shapefile_df.geometry = shapefile_df['geometry'].apply(translate_longitude)

# Mask and scale shapefile
def scale(lon, lat, extra=None):
def scale(lon, lat, extra=None): # pylint: disable=unused-argument
lon = tuple(map(functools.partial(apply_scale_offset, lon_scale, lon_offset), lon))
lat = tuple(map(functools.partial(apply_scale_offset, lat_scale, lat_offset), lat))
return lon, lat
Expand Down

0 comments on commit 6facf4d

Please sign in to comment.