You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Migrate away from star import for explicit ones. Once complete we can remove "F403", # star import; unable to detect undefined names in pyproject.toml.
The text was updated successfully, but these errors were encountered:
Ideally, instead of from .alpha_shapes import * we should do import alpha_shapes and then use alpha_shapes.function in the code. That way we minimise ambiguity of what comes from where.
In __init__.py, we could potentially leave stars but I bet there are other, better solutions than that.
xref: #597 (comment)
Migrate away from star import for explicit ones. Once complete we can remove
"F403", # star import; unable to detect undefined names
inpyproject.toml
.The text was updated successfully, but these errors were encountered: