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
oomwoo_bringup: reformat launch files to this repo's lint style
The launch files came over in kaiaai style (2-space indent, double quotes)
and failed this repo's ament_flake8 / ament_pep257 (colcon test). Reformat
all nine to match the oomwoo packages here -- 4-space indent, single quotes,
sorted/grouped imports, no unused imports -- with no behavior change, plus a
few small cleanups surfaced along the way:
- drop dead code: an unused `re` import in every file, an unused
robot_description in cartographer, an unused urdf_path_str in publish_urdf,
and physical's four no-op LogInfo() statements (never added to the launch
description, so they logged nothing; the print()s above them remain).
- physical: build the telemetry parameter list before the node instead of an
inline ternary; rename the local `lidar_model` to `lidar_model_name` to not
reuse the argument name.
- navigation: rename the `map` OpaqueFunction arg to `map_arg` (avoids
shadowing the builtin); the launch argument is still `map`.
- inspect_urdf: the joints-arg description was `don''t` (two adjacent string
literals -> "dont"); reworded to avoid the apostrophe.
Verified with the real ament_flake8 + ament_pep257 in the jazzy container:
9 files, no problems; colcon test oomwoo_bringup = 16 tests, 0 failures.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
0 commit comments