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
What feature would you like to be included in Luos?
It seems that Pyluos doesn't complain when the user sets a value to an attribute that doesn't exist. For instance, doing the following doesn't raise any exception or warning, so it seems correct but it isn't:
frompyluosimport*c=ControllerMotor(id=0, alias="mot", device=None)
# resolution is not handled by pyluos, it should be encoder_resc.resolution=5
In my opinion it should raise a KeyError, AttributeError, or NotImplementedError exception for instance, depending on the philosophy of Pyluos.
The text was updated successfully, but these errors were encountered:
What feature would you like to be included in Luos?
It seems that Pyluos doesn't complain when the user sets a value to an attribute that doesn't exist. For instance, doing the following doesn't raise any exception or warning, so it seems correct but it isn't:
In my opinion it should raise a
KeyError
,AttributeError
, orNotImplementedError
exception for instance, depending on the philosophy of Pyluos.The text was updated successfully, but these errors were encountered: