E6001 Import Errors
circular-import
circular import detected
When this occurs
A imports B, B imports A
Example error message
error[E6001]:
circular import detected: a.ez -> b.ez -> a.ez
How to fix
Restructure your modules to remove the circular dependency. Consider creating a shared module.
Related errors
No related errors.