-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
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
missing _vals and name #166
Comments
if the structure should be like if names is not None:
if name is not None:
if (name is None) and (names is None): there would be conflicts with |
Closed
@MerlinSmiles I think this can close now? The current issue with Array/Multiparameters is that they are not settable #207 and the confusing setpoints #498 |
@jenshnielsen I guess yes, there have been a lot of changes that resolve this, I think |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@alexcjohnson and others,
I have a parameter:
When I want to use this parameter:
this fails.
At first qc complains that the parameter has no attribute
name
this is because I have supplied n names for n axes. If I addself.name
inparameter.py
that error goes away.Then qc complains that the parameter has no attribute
_vals
which is also missing due to the names.If I add that too, I can do what I planned.
in parameter.py I see:
That comment seems to contradict what is actually happening, should this just be
if
andif
instead?Btw, what is the correct validator for a list of numbers?
The text was updated successfully, but these errors were encountered: