Skip to content

Commit

Permalink
Merge branch 'tier4/universe' into feat/drs
Browse files Browse the repository at this point in the history
Signed-off-by: Kenzo Lobos-Tsunekawa <[email protected]>
  • Loading branch information
knzo25 committed Oct 3, 2024
2 parents b315c5c + eaab74c commit 4b7a4fb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-build-depends.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
build-depends-repos: build_depends.repos
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Remove exec_depend
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
args: [--markdown-linebreak-ext=md]

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.41.0
rev: v0.42.0
hooks:
- id: markdownlint
args: [-c, .markdownlint.yaml, --fix]
Expand Down Expand Up @@ -67,7 +67,7 @@ repos:
args: [--line-length=100]

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v18.1.8
rev: v19.1.0
hooks:
- id: clang-format
types_or: [c++, c, cuda]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,7 @@ def add_calibrator(self, service_name: str, expected_calibration_frames: List[Fr
self.calibrators.append(calibration_wrapper)

def on_service_status_changed(self):
self.services_available = all(
[calibrator.is_available() for calibrator in self.calibrators]
)
self.services_available = all(calibrator.is_available() for calibrator in self.calibrators)
self.update_status()

def on_calibration_result(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,11 @@ def post_process(self, calibration_transforms: Dict[str, Dict[str, np.array]]):

result = {
self.sensor_kit_frame: {
calibration_base_lidar_frame: transform
for calibration_base_lidar_frame, transform in zip(
self.calibration_base_lidar_frames, sensor_kit_to_calibration_lidar_transforms
dict(
zip(
self.calibration_base_lidar_frames,
sensor_kit_to_calibration_lidar_transforms,
)
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,11 @@ def post_process(self, calibration_transforms: Dict[str, Dict[str, np.array]]):

result = {
self.sensor_kit_frame: {
calibration_base_lidar_frame: transform
for calibration_base_lidar_frame, transform in zip(
self.calibration_base_lidar_frames, sensor_kit_to_calibration_lidar_transforms
dict(
zip(
self.calibration_base_lidar_frames,
sensor_kit_to_calibration_lidar_transforms,
)
)
}
}
Expand Down

0 comments on commit 4b7a4fb

Please sign in to comment.