city_retrofit/exports/formats/stl.py

7 lines
149 B
Python
Raw Normal View History

from exports.formats.triangular import Triangular
2021-03-16 16:58:52 -04:00
class Stl(Triangular):
def __init__(self, city, path):
super().__init__(city, path, 'stl')