Skip to content

Commit

Permalink
move the Model class to __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
phiarchitect committed Nov 12, 2023
1 parent 0e70b63 commit 8a515f5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 255 deletions.
2 changes: 1 addition & 1 deletion src/geometor/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def points(self) -> list[spg.Point]:
return [el for el in self if isinstance(el, spg.Point)]

@property
def structs(self) -> list[spg.Line | spg.Circle]:
def structs(self) -> list[Struct]:
"""
returns struct elements (line or circle) from model as list
"""
Expand Down
254 changes: 0 additions & 254 deletions src/geometor/model/model.py

This file was deleted.

0 comments on commit 8a515f5

Please sign in to comment.