Skip to content

Commit cd88057

Browse files
committed
fix(filesystem): fix formating
Signed-off-by: Amilcar Lucas <amilcar.lucas@iav.de>
1 parent e3822b2 commit cd88057

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ardupilot_methodic_configurator/backend_filesystem.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -773,9 +773,9 @@ def get_start_file(self, explicit_index: int, tcal_available: bool) -> str:
773773
)
774774
return files[start_file_index]
775775

776-
# In the no-tcal branch the historical behaviour is files[2], i.e. skip
777-
# the first two files (typically 02_imu_temperature_calibration_setup.param + 03_imu_temperature_calibration_results.param). Fall
778-
# back to the last available file when fewer than 3 files are present
776+
# In the no-tcal branch the historical behaviour is files[2], i.e. skip the first two files,
777+
# typically 02_imu_temperature_calibration_setup.param + 03_imu_temperature_calibration_results.param.
778+
# Fall back to the last available file when fewer than 3 files are present
779779
# so we never crash on a small or non-standard file set.
780780
if tcal_available:
781781
start_file = files[0]

0 commit comments

Comments
 (0)