-
Notifications
You must be signed in to change notification settings - Fork 3
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
Added more ruff rules #59
Conversation
One of the rules added requires setting the strict parameter of zip to True. This gives a free-length check. Currently, we get the above that the sequences are not of the same length. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Almost there. Left a few minor comments.
bdai_ros2_wrappers/bdai_ros2_wrappers/single_goal_action_server.py
Outdated
Show resolved
Hide resolved
One more zip issue. |
I think this is one where we need to ignore the ruff rule because we cannot index the iterable. |
I've added more rules to ruff based on the ones we are adding to other repos.
@mhidalgo-bdai Some of these involve rules for the docstring. Can you make sure that I've not misrepresented anything?