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
The model code is littered with modules that are imported by not used. This slows down the parsing of the code and adds dependencies that are not needed.
A static analyzer like pyright can be used to detect these. I recommend to at least configure a pre-commit hook to detect them before code gets committed.
The text was updated successfully, but these errors were encountered:
The model code is littered with modules that are imported by not used. This slows down the parsing of the code and adds dependencies that are not needed.
A static analyzer like
pyright
can be used to detect these. I recommend to at least configure a pre-commit hook to detect them before code gets committed.The text was updated successfully, but these errors were encountered: