7 lines
149 B
Python
7 lines
149 B
Python
from exports.formats.triangular import Triangular
|
|
|
|
|
|
class Stl(Triangular):
|
|
def __init__(self, city, path):
|
|
super().__init__(city, path, 'stl')
|