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 code currently as utils.modules_ext.py to import external modules such as Numpy, Scipy, Matplotlib, etc. This means that modules are sometimes imported when not required, and also makes code linting very tricky.
Instead, modules should be imported within the files in which they are used.
The text was updated successfully, but these errors were encountered:
The code currently as
utils.modules_ext.py
to import external modules such as Numpy, Scipy, Matplotlib, etc. This means that modules are sometimes imported when not required, and also makes code linting very tricky.Instead, modules should be imported within the files in which they are used.
The text was updated successfully, but these errors were encountered: