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 uid property of Command is dynamically set in __init__ function of the MetaClass. But when accessed it returns a property object:
uid
Command
__init__
In [1]: from houston.ardu.common import ArmDisarm In [2]: ArmDisarm.uid Out[2]: <property at 0x7f1354389868>
But when uid is set with a string it works with no problem:
> GoTo.uid 'ardu:copter:goto'
The same thing applies to property name of class System (even if it's set with an string):
name
System
In [6]: ArduCopter.name Out[6]: <property at 0x7f13540e1d18>
The text was updated successfully, but these errors were encountered:
ChrisTimperley
No branches or pull requests
The
uid
property ofCommand
is dynamically set in__init__
function of the MetaClass. But when accessed it returns a property object:But when
uid
is set with a string it works with no problem:The same thing applies to property
name
of classSystem
(even if it's set with an string):The text was updated successfully, but these errors were encountered: