Skip to content

Commit b9b8d3e

Browse files
committed
fmt
1 parent 7d883b7 commit b9b8d3e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

console_backend/src/common_constants.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ pub enum Keys {
273273
NEW_INS_CONFIRMATON,
274274
#[strum(serialize = "ANTENNA_STATUS")]
275275
ANTENNA_STATUS,
276-
#[strum(serialize = "RECORDING_DURATION_SEC")]
277-
RECORDING_DURATION_SEC,
276+
#[strum(serialize = "RECORDING_START_TIME")]
277+
RECORDING_START_TIME,
278278
#[strum(serialize = "RECORDING_SIZE")]
279279
RECORDING_SIZE,
280280
#[strum(serialize = "LAST_USED_SERIAL_DEVICE")]

swiftnav_console/main.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -259,13 +259,13 @@ class BackendMessageReceiver(QObject): # pylint: disable=too-many-instance-attr
259259
_request_quit: Signal = Signal()
260260

261261
def __init__(
262-
self,
263-
app,
264-
backend,
265-
messages,
266-
exit_after_timeout: Optional[float] = None,
267-
record_file: Optional[str] = None,
268-
record: bool = False,
262+
self,
263+
app,
264+
backend,
265+
messages,
266+
exit_after_timeout: Optional[float] = None,
267+
record_file: Optional[str] = None,
268+
record: bool = False,
269269
):
270270
super().__init__()
271271
self._app = app

0 commit comments

Comments
 (0)