Skip to content

Commit

Permalink
Add extra commas needed by Pydantic.
Browse files Browse the repository at this point in the history
  • Loading branch information
danscales committed Jun 17, 2024
1 parent 49e8b3d commit a7968c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/datapump/sync/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def build_jobs(self, config: DatapumpConfig) -> List[Job]:
pixel_meaning="intensity",
data_type="uint8",
calc="(A > 0) * 255",
grid="10/100000"
grid="10/100000",
)
],
cog_asset_parameters=[
Expand All @@ -247,14 +247,14 @@ def build_jobs(self, config: DatapumpConfig) -> List[Job]:
source_pixel_meaning="date_conf",
resampling="mode",
implementation="default",
blocksize=1024
blocksize=1024,
),
# Created from the "intensity" asset
CogAssetParameters(
source_pixel_meaning="intensity",
resampling="bilinear",
implementation="intensity",
blocksize=1024
blocksize=1024,
),
],
content_date_range=ContentDateRange(
Expand Down

0 comments on commit a7968c8

Please sign in to comment.