We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current situation in the core module is that there is a wild mix between two different approaches to importing functionality from libraries.
The first one is to use: from numpy import power ... power(x, y)
The second one is: import numpy as np ... np.power(x, y)
The team has decided to go for the second option and so it should be used everywhere.
The text was updated successfully, but these errors were encountered:
Adjust import statements to match convention (#43) (Closes: #39)
ff87607
arniw2
Successfully merging a pull request may close this issue.
Description
The current situation in the core module is that there is a wild mix between two different approaches to importing functionality from libraries.
The first one is to use:
from numpy import power
...
power(x, y)
The second one is:
import numpy as np
...
np.power(x, y)
The team has decided to go for the second option and so it should be used everywhere.
Acceptance Criteria
The text was updated successfully, but these errors were encountered: