Skip to content

Commit

Permalink
fix parts
Browse files Browse the repository at this point in the history
  • Loading branch information
bat52 committed Nov 17, 2024
1 parent e0cce70 commit 9dbfe55
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/pylele/pylele2/worm_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from pylele.api.solid import main_maker, test_loop
from pylele.api.core import Shape, Implementation
from pylele.pylele2.base import LeleBase
from parts.rounded_box import RoundedBox
from pylele.parts.rounded_box import RoundedBox

class LeleWormKey(LeleBase):
"""Pylele Worm Key Generator class"""
Expand Down
10 changes: 5 additions & 5 deletions src/pylele/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,11 @@ def test_manifold_api(self):
test_api(api="manifold")

## Solid Parts
from parts.tube import test_tube, test_tube_mock
from parts.screw import test_screw, test_screw_mock
from parts.import3d import test_import3d
from parts.scad_example import test_scad_example
from parts.rounded_box import test_rounded_box, test_rounded_box_mock
from pylele.parts.tube import test_tube, test_tube_mock
from pylele.parts.screw import test_screw, test_screw_mock
from pylele.parts.import3d import test_import3d
from pylele.parts.scad_example import test_scad_example
from pylele.parts.rounded_box import test_rounded_box, test_rounded_box_mock

## Pylele Individual Parts
from pylele.pylele2.frets import test_frets, test_frets_mock
Expand Down

0 comments on commit 9dbfe55

Please sign in to comment.