pycycle icon indicating copy to clipboard operation
pycycle copied to clipboard

Misses cycles not reachable from the first file found

Open andersk opened this issue 7 years ago • 1 comments

$ echo import c > b.py
$ echo import b > c.py
$ ls
b.py  c.py
$ pycycle --here
Project successfully transformed to AST, checking imports for cycles..
Cycle Found :(
b -> c: Line 1 =>> b
Finished.
$ touch a.py
$ ls
a.py  b.py  c.py
$ pycycle --here
Project successfully transformed to AST, checking imports for cycles..
No worries, no cycles here!
If you think some cycle was missed, please open an Issue on Github.
Finished.

andersk avatar Jun 16 '18 00:06 andersk

Not sure if this is related, but also misses cycles through module imports with an __init__.py.

darthdeus avatar Jan 12 '19 00:01 darthdeus