Skip to content

Commit

Permalink
skip exception catch in test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
ungarj committed Nov 4, 2024
1 parent 86b524a commit 8c40817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapchete/geometry/reproject.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_crs_bounds(crs: CRS) -> Bounds:
)
if pyproj_crs.area_of_use:
return Bounds.from_inp(pyproj_crs.area_of_use.bounds, crs=LATLON_CRS)
except CRSError as exc:
except CRSError as exc: # pragma: no cover
logger.debug(exc)
pass
raise ValueError(f"bounds of CRS {crs} could not be determined")
Expand Down

0 comments on commit 8c40817

Please sign in to comment.