Closed carolinafernandezp closed 1 year ago
In what case would this fix anything?
The linked issue is most likely due to conflicting packages instead
In what case would this fix anything?
The linked issue is most likely due to conflicting packages instead
I was having the same problem as the person that raised the issue (and had no other stl module installed and no other file named stl.py
in my directory) and this resolved it.
Very odd... it shouldn't make any difference.
Can you please test what happens if you add this at the top of mesh.py
?
from . import stl
print(stl)
Very odd... it shouldn't make any difference.
Can you please test what happens if you add this at the top of
mesh.py
?from . import stl print(stl)
I get the following (I agree that it shouldn't make a difference):
<module 'stl.stl' from '/home/lab/.local/lib/python3.10/site-packages/stl/stl.py'>
It finds the package, same if I do print(stl.BaseStl)
:
<class 'stl.stl.BaseStl'>
I can just close this PR since it found it without a problem now, not sure why it happened.
Fixes #215