Skip to content

Commit 9d2076b

Browse files
committed
Remove print in Tile.bounding_polygon
1 parent f5ec9fd commit 9d2076b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pyowm/commons/tile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def bounding_polygon(self):
5050
:return: `pywom.utils.geo.Polygon` instance
5151
"""
5252
lon_left, lat_bottom, lon_right, lat_top = Tile.tile_coords_to_bbox(self.x, self.y, self.zoom)
53-
print(lon_left, lat_bottom, lon_right, lat_top)
5453
return Polygon([[[lon_left, lat_top],
5554
[lon_right, lat_top],
5655
[lon_right, lat_bottom],

0 commit comments

Comments
 (0)