Skip to content

Commit

Permalink
Fix tempfile
Browse files Browse the repository at this point in the history
  • Loading branch information
wpreimes committed May 25, 2024
1 parent 26096b9 commit 53f4ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_img2ts.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def test_img2ts_ortho_daily_no_resampling():
input_grid = BasicGrid(np.array([0.5, 0.5, -0.5, -0.5]),
np.array([1, -1, 1, -1]), )

with (tempfile.TemporaryDirectory() as outputpath):
with tempfile.TemporaryDirectory() as outputpath:
start = datetime(2014, 2, 5)
end = datetime(2014, 4, 21)

Expand Down

0 comments on commit 53f4ace

Please sign in to comment.