Skip to content

Commit

Permalink
Fix padding issue in Raster.info() (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet authored Jun 13, 2024
1 parent 6cac396 commit ae4b180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geoutils/raster/raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -2083,7 +2083,7 @@ def info(self, stats: bool = False, verbose: bool = True) -> None | str:
f"Filename: {self.name} \n",
f"Loaded? {self.is_loaded} \n",
f"Modified since load? {self.is_modified} \n",
f"Grid size: {self.width}, {self.height}\n",
f"Grid size: {self.width}, {self.height}\n",
f"Number of bands: {self.count:d}\n",
f"Data types: {self.dtype}\n",
f"Coordinate system: {[self.crs.to_string() if self.crs is not None else None]}\n",
Expand Down

0 comments on commit ae4b180

Please sign in to comment.