Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions inorbit_edge/missions.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@
MISSION_STATE_COMPLETED = "Completed"
MISSION_STATE_CANCELED = "Canceled"

# Mission status
# Mission status. The platform matches these exactly, including case:
# "OK" | "warning" | "error".
MISSION_STATUS_OK = "OK"
MISSION_STATUS_ERROR = "Error"
MISSION_STATUS_WARNING = "warning"
MISSION_STATUS_ERROR = "error"


class MissionsModule:
Expand Down
Loading