summer_course_2024/exports/formats/stl.py

6 lines
148 B
Python
Raw Normal View History

from exports.formats.triangular import Triangular
class Stl(Triangular):
def __init__(self, city, path):
super().__init__(city, path, 'stl')