Skip to content

Commit

Permalink
handle uppercase .prj
Browse files Browse the repository at this point in the history
  • Loading branch information
sclaw committed Oct 31, 2024
1 parent 0225492 commit 22c88dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ras_stac/ras1d/utils/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def endswith(self, suffix: str) -> bool:

@property
def is_ras_prj(self) -> bool:
if not self.endswith(".prj"):
if not self.lower().endswith(".prj"):
return False
if self.file_str is None:
self.download_asset_str()
Expand Down

0 comments on commit 22c88dc

Please sign in to comment.