We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfe3245 commit 355bd7cCopy full SHA for 355bd7c
proveskit_ground_station/proveskit_ground_station.py
@@ -49,7 +49,7 @@ def send_receive(self):
49
self._log.warning("Invalid command selection. Please try again.")
50
return
51
52
- message = {
+ message: dict[str, object] = {
53
"password": self._config.super_secret_code,
54
}
55
@@ -58,7 +58,7 @@ def send_receive(self):
58
elif cmd_selection == "2":
59
message["command"] = self._cdh.command_change_radio_modulation
60
modulation = input("Enter new radio modulation [FSK | LoRa]: ")
61
- message["args"] = f"[{modulation}]"
+ message["args"] = [{modulation}]
62
elif cmd_selection == "3":
63
message["command"] = self._cdh.command_send_joke
64
0 commit comments