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
aq.ArrayVar
Today the dimensions kwarg is required when declaring an aq.ArrayVar. For example:
dimensions
aq.ArrayVar([1, 2, 3], dimensions=[3])
We should be able to automatically infer dimensions if an initial value is defined. So the code becomes just:
aq.ArrayVar([1, 2, 3])
Optionally, we may remove the dimensions kwarg altogether, and force the user to always specify an initial value.
The text was updated successfully, but these errors were encountered:
@Yash-10, thank you for the contribution! Can you please confirm that you'd like me to assign this issue to you?
Sorry, something went wrong.
Thank you @rmshaffer! Sure, I'd like to be assigned to this issue.
Yash-10
Successfully merging a pull request may close this issue.
Today the
dimensions
kwarg is required when declaring anaq.ArrayVar
. For example:We should be able to automatically infer
dimensions
if an initial value is defined. So the code becomes just:Optionally, we may remove the
dimensions
kwarg altogether, and force the user to always specify an initial value.The text was updated successfully, but these errors were encountered: