Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cmarshak committed Jun 24, 2024
1 parent 1c7667c commit e688572
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/tile_mate/stitcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_tile_data(
year: Optional[int] = None,
season: Optional[str] = None,
temporal_baseline_days: Optional[str] = None,
s1_decay_model_param: Optional[str] = None
s1_decay_model_param: Optional[str] = None,
) -> gpd.GeoDataFrame:
# Because tile data is cached - we need to copy it.
df_tiles = get_all_tile_data(tile_key).copy()
Expand Down Expand Up @@ -202,7 +202,7 @@ def get_raster_from_tiles(
year: Optional[int] = None,
season: Optional[str] = None,
temporal_baseline_days: Optional[int] = None,
s1_decay_model_param: Optional[str] = None
s1_decay_model_param: Optional[str] = None,
) -> tuple:
if (tile_shortname is None) and (df_tiles is None):
raise ValueError('Either "tile_shortname" or "df_tiles" must be provided')
Expand Down
2 changes: 1 addition & 1 deletion tests/test_stitch_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
DATASETS_WITH_YEAR,
GLAD_LANDCOVER_YEARS,
HANSEN_MOSAIC_YEARS,
S1_MODEL_VARIABLES,
S1_TEMPORAL_BASELINE_DAYS,
SEASONS,
S1_MODEL_VARIABLES,
)


Expand Down

0 comments on commit e688572

Please sign in to comment.