Skip to content

Commit 3694192

Browse files
committed
blacked again
1 parent 580aae6 commit 3694192

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

range-test/receive.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88

99
def main() -> None:
10-
1110
if len(sys.argv) != 2:
1211
print("Must provide the COM port/serial port where the radio is connected.")
1312
exit(1)

range-test/transmit.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313

1414
def main() -> None:
15-
1615
if len(sys.argv) != 2:
1716
print("Must provide the COM port/serial port where the radio is connected.")
1817
exit(1)

src/ground_station_v2/api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,13 @@ async def replay_goto(x_client_id: str = Header(alias="X-Client-ID")):
123123

124124
@app.post("/record_start")
125125
async def record_start(x_client_id: str = Header(alias="X-Client-ID")):
126-
127126
recorder.start()
128127
logger.info(f"Record start for client {x_client_id}")
129128
return {"status": "ok"}
130129

131130

132131
@app.post("/record_stop")
133132
async def record_stop(x_client_id: str = Header(alias="X-Client-ID")):
134-
135133
recorder.stop()
136134
logger.info(f"Record stop for client {x_client_id}")
137135
return {"status": "ok"}

0 commit comments

Comments
 (0)