Skip to content

Commit 240ee5f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e21831f commit 240ee5f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ardupilot_methodic_configurator/data_model_parameter_editor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
from ardupilot_methodic_configurator.plugin_constants import PLUGIN_BATTERY_MONITOR, PLUGIN_MOTOR_TEST
4444
from ardupilot_methodic_configurator.tempcal_imu import IMUfit
4545

46-
4746
# GNSS MAVLink protocol default value (ArduPilot GPS_TYPE value 5 = MAVLink GPS)
4847
_GNSS_MAVLINK_PROTOCOL_VALUE = "5"
4948
# The rename_connection expression that identifies a GNSS-via-MAVLink step
5049
_GNSS_FC_CONNECTION_RENAME_EXPR = "vehicle_components['GNSS Receiver']['FC Connection']['Type']"
5150

51+
5252
@dataclass(frozen=True)
5353
class ComponentEditorDeps:
5454
"""
@@ -62,6 +62,7 @@ class ComponentEditorDeps:
6262
local_filesystem: LocalFilesystem
6363
fc_parameters: dict[str, float]
6464

65+
6566
# Type aliases for callback functions used in workflow methods
6667
AskConfirmationCallback = Callable[[str, str], bool] # (title, message) -> bool
6768
SelectFileCallback = Callable[[str, list[str]], Optional[str]] # (title, filetypes) -> Optional[filename]

0 commit comments

Comments
 (0)