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 access to variables should be replaced by a function like this:
Current:
from skin import parameters parameters.get(..)
New:
from skin import getParameters getParameters().get(..)
parameters is only one example.
Why do we need this? The import of these global variables will not work if the values will be changed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The access to variables should be replaced by a function like this:
Current:
New:
parameters is only one example.
Why do we need this?
The import of these global variables will not work if the values will be changed.
The text was updated successfully, but these errors were encountered: