From c7811a32180f9c6a85f0d03d10065a715025f2e5 Mon Sep 17 00:00:00 2001 From: Sergey Vartanov Date: Sat, 25 Jun 2022 21:00:48 +0300 Subject: [PATCH] Fix module descriptions. --- map_machine/__init__.py | 4 +--- map_machine/element/__init__.py | 1 + map_machine/osm/__init__.py | 4 +--- map_machine/slippy/__init__.py | 4 +--- map_machine/ui/__init__.py | 4 +--- 5 files changed, 5 insertions(+), 12 deletions(-) diff --git a/map_machine/__init__.py b/map_machine/__init__.py index d55351f..450f8ec 100644 --- a/map_machine/__init__.py +++ b/map_machine/__init__.py @@ -1,6 +1,4 @@ -""" -Map Machine project: simple Python map renderer for OpenStreetMap and icon set. -""" +"""Map Machine: Python map renderer for OpenStreetMap with custom icon set.""" __project__ = "Map Machine" __description__ = ( diff --git a/map_machine/element/__init__.py b/map_machine/element/__init__.py index e69de29..c0328f2 100644 --- a/map_machine/element/__init__.py +++ b/map_machine/element/__init__.py @@ -0,0 +1 @@ +"""Drawing of separate map elements.""" diff --git a/map_machine/osm/__init__.py b/map_machine/osm/__init__.py index 31178c7..100c9b9 100644 --- a/map_machine/osm/__init__.py +++ b/map_machine/osm/__init__.py @@ -1,3 +1 @@ -""" -OpenStreetMap-specific things. -""" +"""OpenStreetMap-specific things.""" diff --git a/map_machine/slippy/__init__.py b/map_machine/slippy/__init__.py index 80830f0..70bbe57 100644 --- a/map_machine/slippy/__init__.py +++ b/map_machine/slippy/__init__.py @@ -1,3 +1 @@ -""" -Tiles generation for slippy maps. -""" +"""Tiles generation for slippy maps.""" diff --git a/map_machine/ui/__init__.py b/map_machine/ui/__init__.py index ef42fdf..650c7e0 100644 --- a/map_machine/ui/__init__.py +++ b/map_machine/ui/__init__.py @@ -1,3 +1 @@ -""" -User interface. -""" +"""User interface."""