Skip to content

Commit

Permalink
fixed fstring (#304)
Browse files Browse the repository at this point in the history
Co-authored-by: Louis-Philippe Rousseau Lambert <[email protected]>
  • Loading branch information
RousseauLambertLP and Louis-Philippe Rousseau Lambert authored Sep 7, 2023
1 parent 25d9aef commit 74e40e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msc_pygeoapi/provider/cangrd_rasterio.py
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ def _get_coverage_properties(self):

if self._data.crs is not None:
if self._data.crs.is_projected:
bbox_crs = f'http://www.opengis.net/def/crs/OGC/1.3/{self._data.crs.to_epsg()' # noqa
bbox_crs = f'http://www.opengis.net/def/crs/OGC/1.3/{self._data.crs.to_epsg()}' # noqa
properties['bbox_crs'] = bbox_crs

properties['x_axis_label'] = 'x'
Expand Down

0 comments on commit 74e40e4

Please sign in to comment.