Fix imports.

This commit is contained in:
Sergey Vartanov 2022-08-05 00:05:36 +03:00
parent 49db628d76
commit 5361725820
3 changed files with 21 additions and 26 deletions

View file

@ -7,8 +7,9 @@ import numpy as np
import svgwrite
from svgwrite.path import Path as SVGPath
from element.grid import Grid
from map_machine.element.grid import Grid
from map_machine.map_configuration import LabelMode
from map_machine.osm.osm_reader import Tags
from map_machine.pictogram.icon import ShapeExtractor
from map_machine.pictogram.point import Point
from map_machine.scheme import LineStyle, Scheme
@ -18,8 +19,6 @@ from map_machine.workspace import workspace
__author__ = "Sergey Vartanov"
__email__ = "me@enzet.ru"
from osm.osm_reader import Tags
def draw_node(tags: Tags) -> None:
grid: Grid = Grid()