Fix pydocstyle warnings.

This commit is contained in:
Sergey Vartanov 2022-06-07 23:58:46 +03:00
parent 675435dd1a
commit 18d475277d
3 changed files with 6 additions and 9 deletions

View file

@ -1,3 +1 @@
""" """Specific map features: roads, directions, etc."""
Specific map features: roads, directions, etc.
"""

View file

@ -1,3 +1 @@
""" """Map geometry: dealing with coordinates, projections."""
Map geometry: dealing with coordinates, projections.
"""

View file

@ -81,8 +81,7 @@ class BoundaryBox:
height: float, height: float,
) -> "BoundaryBox": ) -> "BoundaryBox":
""" """
Compute boundary box from central coordinates, zoom level and resulting Compute boundary box from center coordinates, zoom level and image size.
image size.
:param coordinates: boundary box central coordinates :param coordinates: boundary box central coordinates
:param zoom_level: resulting image zoom level :param zoom_level: resulting image zoom level
@ -144,7 +143,9 @@ class BoundaryBox:
def get_format(self) -> str: def get_format(self) -> str:
""" """
Get text representation of the boundary box: Get text representation of the boundary box.
Boundary box format is
<longitude 1>,<latitude 1>,<longitude 2>,<latitude 2>. Coordinates are <longitude 1>,<latitude 1>,<longitude 2>,<latitude 2>. Coordinates are
rounded to three digits after comma. rounded to three digits after comma.
""" """