Skip to content

Commit

Permalink
Update small mistake of attributeerror (#2162)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfalkena authored Jul 12, 2024
1 parent b6e22fc commit ff66eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ with rio.open(os.path.join(ROOT, FILENAME), "r") as src:
dtype = src.profile["dtype"]
Z = np.random.randint(np.iinfo(dtype).max, size=(SIZE, SIZE), dtype=dtype)
with rio.open(FILENAME, "w", **src.profile) as dst:
for i in dst.profile.indexes:
for i in dst.indexes:
dst.write(Z, i)
```

Expand Down

0 comments on commit ff66eba

Please sign in to comment.