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
{{ message }}
This repository was archived by the owner on Jul 17, 2026. It is now read-only.
When using codegen to remove dead code, it incorrectly identifies functions accessed via module attribute notation as unused.
Example:
file: example.py
In the dead code script:
As a result,
some_funcis incorrectly identified as dead code and removed, despite being actively used through module attribute access.Expected Behavior:
some_funcshould show usage when accessed viamodule.some_func()