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
When running tests with pytest, I encounter a circular import error in harmonic/utils.py at the line:
from harmonic import model_legacy
This error occurs because harmonic/init.py imports utils, leading to a circular dependency. Please consider either moving this import inside the functions that use it (lazy import) or updating the import to the new location if model_legacy has been renamed.
The text was updated successfully, but these errors were encountered:
When running tests with pytest, I encounter a circular import error in harmonic/utils.py at the line:
from harmonic import model_legacy
This error occurs because harmonic/init.py imports utils, leading to a circular dependency. Please consider either moving this import inside the functions that use it (lazy import) or updating the import to the new location if model_legacy has been renamed.
The text was updated successfully, but these errors were encountered: