Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
python-version: 3.11
- name: Install wpiformat
run: pip3 install wpiformat==2025.33
run: pip3 install wpiformat==2025.34
- name: Run
run: wpiformat
- name: Check output
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,10 @@ struct Problem {
};

static std::optional<Problem> createProblem(int numTags, bool heading_free) {
#define MAKE_P(tags, suffix) \
Problem { \
tags, heading_free, calc_J_##tags##_tags_heading_##suffix, \
calc_gradJ_##tags##_tags_heading_##suffix, \
calc_hessJ_##tags##_tags_heading_##suffix \
}
#define MAKE_P(tags, suffix) \
Problem{tags, heading_free, calc_J_##tags##_tags_heading_##suffix, \
calc_gradJ_##tags##_tags_heading_##suffix, \
calc_hessJ_##tags##_tags_heading_##suffix}
#define MAKE_CASE(n) \
case n: \
return heading_free ? MAKE_P(n, free) : MAKE_P(n, fixed);
Expand Down
4 changes: 2 additions & 2 deletions photonlib-python-examples/aimandrange/tests/pyfrc_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
This test module imports tests that come with pyfrc, and can be used
to test basic functionality of just about any robot.
This test module imports tests that come with pyfrc, and can be used
to test basic functionality of just about any robot.
"""
4 changes: 2 additions & 2 deletions photonlib-python-examples/aimattarget/tests/pyfrc_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
This test module imports tests that come with pyfrc, and can be used
to test basic functionality of just about any robot.
This test module imports tests that come with pyfrc, and can be used
to test basic functionality of just about any robot.
"""
4 changes: 2 additions & 2 deletions photonlib-python-examples/poseest/tests/pyfrc_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
This test module imports tests that come with pyfrc, and can be used
to test basic functionality of just about any robot.
This test module imports tests that come with pyfrc, and can be used
to test basic functionality of just about any robot.
"""
Loading