Skip to content

Commit

Permalink
lint error fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
dabhicusp committed Mar 22, 2024
1 parent 5402120 commit 0524760
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xee/ext_integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def test_write_projected_dataset_to_raster(self):
scale=10,
crs=crs,
geometry=geom,
projection= ee.Projection(crs, [10, 0, 0, 0, -10, 0])
projection=ee.Projection(crs, [10, 0, 0, 0, -10, 0]),
)

ds = ds.isel(time=0).transpose('Y', 'X')
Expand Down Expand Up @@ -508,7 +508,7 @@ def test_write_dataset_to_raster(self):
col,
engine=xee.EarthEngineBackendEntrypoint,
geometry=geom,
projection= ee.Projection('EPSG:4326', [0.0025, 0, 0, 0, -0.0025, 0])
projection=ee.Projection('EPSG:4326', [0.0025, 0, 0, 0, -0.0025, 0]),
)

ds = ds.isel(time=0).transpose('lat', 'lon')
Expand Down

0 comments on commit 0524760

Please sign in to comment.