-
Notifications
You must be signed in to change notification settings - Fork 532
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
WMD Track: MoveIt Config Utils #1292
Comments
Here's an issue: moveit_configs_utils/moveit_configs_utils/moveit_configs_builder.py
I think this is a bad idea because it will catch |
6 tasks
Refactor MoveItConfigs to be decorated with dataclass from dataclasses import dataclass
@dataclass(slots=True)
class MoveItConfigs:
something: Type = DefaultValue
... This would save us from having the following for each parameter __slots__ = [
"__something",
...
]
@property
def something(self):
return self.__something
@something.setter
def something(self, value):
self.__something = value |
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: