Skip to content

Commit

Permalink
remove trailing white spaces and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
LoreMoretti committed Oct 11, 2024
1 parent 3e82830 commit 30a815a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to this project are documented in this file.
- Implement low-pass filter for estimated friction torques in `JointTorqueControlDevice` (https://github.com/ami-iit/bipedal-locomotion-framework/pull/892)
- Add `blf-motor-current-tracking.py` application (https://github.com/ami-iit/bipedal-locomotion-framework/pull/894)
- Add the possibility to initialize the base position and the feet pose in the `unicycleTrajectoryGenerator` (https://github.com/ami-iit/bipedal-locomotion-framework/pull/887)
- Add software joint position limits to the `blf-motor-current-tracking.py` application (https://github.com/ami-iit/bipedal-locomotion-framework/pull/901)

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def main():
except ValueError:
software_lower_limits = None
software_upper_limits = None

if software_lower_limits is not None and software_upper_limits is not None:
if len(software_lower_limits) != len(joints_to_control) or len(software_upper_limits) != len(joints_to_control):
raise ValueError(
Expand Down

0 comments on commit 30a815a

Please sign in to comment.