Skip to content

Commit

Permalink
Merge branch 'user-leds' into testing
Browse files Browse the repository at this point in the history
  • Loading branch information
WillB97 committed Jul 9, 2024
2 parents 81548ad + f3cfc87 commit 5d97fe8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sbot/leds.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import atexit
import logging
import warnings
from enum import IntEnum, unique
from enum import Enum, IntEnum, unique
from types import MappingProxyType
from typing import Literal, Mapping, NamedTuple, Optional

Expand Down Expand Up @@ -63,7 +63,7 @@ def user_leds(cls) -> dict[Literal['A', 'B', 'C'], RGBled]:
}


class Colour():
class Colour(Enum):
"""User LED colours."""

OFF = (False, False, False)
Expand Down

0 comments on commit 5d97fe8

Please sign in to comment.