Skip to content

Commit

Permalink
Merge branch 'destroy-typos-check-all' into destroy-typos
Browse files Browse the repository at this point in the history
  • Loading branch information
HansRobo committed Feb 8, 2023
2 parents 1f7157a + 7086aac commit 6116ca0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/sync-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
- source: .github/workflows/pre-commit.yaml
- source: .github/workflows/pre-commit-optional.yaml
- source: .github/workflows/semantic-pull-request.yaml
- source: .github/workflows/spell-check-differential.yaml
- source: .github/workflows/spell-check-all.yaml
- source: .github/workflows/sync-files.yaml
- source: .clang-format
- source: .markdown-link-check.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ jobs:
uses: autowarefoundation/autoware-github-actions/spell-check@v1
with:
cspell-json-url: https://github.com/tier4/autoware-spell-check-dict/main/.cspell.json
incremental-files-only: false
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

// cspell: ignore LFIT, lfit
// LFIT means "L-Shape Fitting"

#ifndef GEOMETRY__BOUNDING_BOX__LFIT_HPP_
#define GEOMETRY__BOUNDING_BOX__LFIT_HPP_

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class RRTStar : public AbstractPlanningAlgorithm
node.declare_parameter("rrtstar.enable_update", true),
node.declare_parameter("rrtstar.use_informed_sampling", true),
node.declare_parameter("rrtstar.max_planning_time", 150.0),
node.declare_parameter("rrtstar.neighbour_radius", 8.0),
node.declare_parameter("rrtstar.neighbor_radius", 8.0),
node.declare_parameter("rrtstar.margin", 0.1)})
{
}
Expand Down
1 change: 1 addition & 0 deletions planning/freespace_planning_algorithms/test/debug_plot.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ def create_concat_png(src_list, dest, is_horizontal):
parser.add_argument(
"--concat", action="store_true", help="concat png images (requires imagemagick)"
)

args = parser.parse_args()
concat = args.concat

Expand Down

0 comments on commit 6116ca0

Please sign in to comment.