Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix function name #3363

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/app/jobs/viirs_snow.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
# Create a mosaic from the snow coverage imagery, clip it to the boundary of BC and save to S3
self._create_snow_coverage_mosaic(sub_dir)
await self._clip_snow_coverage_mosaic(sub_dir, path)
await self._save_clipped_snow_coverage_moasic_to_s3(for_date, sub_dir)
await self._save_clipped_snow_coverage_mosaic_to_s3(for_date, sub_dir)

Check warning on line 154 in api/app/jobs/viirs_snow.py

View check run for this annotation

Codecov / codecov/patch

api/app/jobs/viirs_snow.py#L154

Added line #L154 was not covered by tests


async def _run_viirs_snow(self):
Expand Down
Loading