Closed christianrauch closed 1 year ago
@quarkytale Can this be merged now?
This was merged without any CI, and is causing flake8 errors: https://ci.ros2.org/job/ci_linux-aarch64/13048/testReport/junit/rqt_reconfigure.test/test_flake8/test_flake8/ . @quarkytale can you take a look and fix it?
Found the issue
./src/rqt_reconfigure/param_client_widget.py:44:1: I100 Import statements are in the wrong order. 'from rclpy.parameter import Parameter' should be before 'from rqt_reconfigure.param_api import create_param_client'
from rclpy.parameter import Parameter
This changes the source for the parameter type form the default value to the descriptor to fix widget selection for parameters without initial default value.
Closes #123 .