map-machine/test/__init__.py
Sergey Vartanov 9bc71ebf92 Fix typo.
2021-06-08 02:06:44 +03:00

17 lines
358 B
Python

"""
Tests for Röntgen project.
"""
from pathlib import Path
from roentgen.icon import ShapeExtractor
from roentgen.scheme import Scheme
__author__ = "Sergey Vartanov"
__email__ = "me@enzet.ru"
SCHEME: Scheme = Scheme(Path("scheme/default.yml"))
SHAPE_EXTRACTOR: ShapeExtractor = ShapeExtractor(
Path("icons/icons.svg"), Path("icons/config.json")
)