mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-29 10:17:23 +02:00
Optimize imports.
This commit is contained in:
parent
1197a60bac
commit
d12166143a
3 changed files with 8 additions and 7 deletions
|
@ -1,12 +1,13 @@
|
|||
"""
|
||||
Buildings on the map.
|
||||
"""
|
||||
from typing import Any, Optional
|
||||
|
||||
import numpy as np
|
||||
from colour import Color
|
||||
from svgwrite import Drawing
|
||||
from svgwrite.container import Group
|
||||
from svgwrite.path import Path
|
||||
from typing import Any, Optional
|
||||
|
||||
from map_machine.drawing import PathCommands
|
||||
from map_machine.feature.direction import Segment
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
"""
|
||||
Direction tag support.
|
||||
"""
|
||||
from colour import Color
|
||||
from svgwrite import Drawing
|
||||
from svgwrite.gradients import RadialGradient
|
||||
from svgwrite.path import Path
|
||||
from typing import Iterator, Optional
|
||||
|
||||
import numpy as np
|
||||
from colour import Color
|
||||
from portolan import middle
|
||||
from svgwrite import Drawing
|
||||
from svgwrite.gradients import RadialGradient
|
||||
from svgwrite.path import Path
|
||||
|
||||
from map_machine.drawing import PathCommands
|
||||
from map_machine.osm.osm_reader import Tagged
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
Map drawing configuration.
|
||||
"""
|
||||
import argparse
|
||||
from colour import Color
|
||||
from dataclasses import dataclass
|
||||
from enum import Enum
|
||||
|
||||
from typing import Optional
|
||||
|
||||
from colour import Color
|
||||
|
||||
__author__ = "Sergey Vartanov"
|
||||
__email__ = "me@enzet.ru"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue