Not catching cycles in Django project
Open
bug
- Dominant language
- Python
- Stars
- 363
- Forks
- 24
- PR merge metrics
- No merged PRs in 30d
Description
I tested in a Django project with a pretty common circular import situation and it couldn't catch it:
`myapp/models.py`
```
from .managers import MyModelManager
class MyModel(models.Model):
....
```
`myapp/managers.py`
```
from .models import MyModel
class MyModelManager(models.ModelManager):
...
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.