mirror of
https://github.com/enzet/map-machine.git
synced 2025-06-08 22:01:51 +02:00
10 lines
179 B
Python
10 lines
179 B
Python
"""
|
|
Author: Sergey Vartanov (me@enzet.ru).
|
|
"""
|
|
|
|
from roentgen.grid import draw_all_icons
|
|
|
|
|
|
def test_icons() -> None:
|
|
""" Test grid drawing. """
|
|
draw_all_icons("temp.svg")
|