Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Jan 27, 2024
1 parent 48ee983 commit 35181a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -1514,8 +1514,8 @@ def test_reproject(self, example: str) -> None:

# Check when transform is updated (via res)
r_tmp_res = r.copy()
r_res = r_tmp_res.reproject(res=r.res[0]/2)
r_tmp_res.reproject(res=r.res[0]/2, inplace=True)
r_res = r_tmp_res.reproject(res=r.res[0] / 2)
r_tmp_res.reproject(res=r.res[0] / 2, inplace=True)

assert r_res.raster_equal(r_tmp_res)

Expand Down

0 comments on commit 35181a1

Please sign in to comment.