diff --git a/src/sensor/tofsensor.py b/src/sensor/tofsensor.py index 9a44462..a8fb4df 100644 --- a/src/sensor/tofsensor.py +++ b/src/sensor/tofsensor.py @@ -5,7 +5,7 @@ class Directions(Enum): INSIDE = "indoor" OUTSIDE = "outdoor" - def other(self, direction: Direction) -> Direction: + def other(self, direction: 'Direction') -> 'Direction': if direction is Directions.INSIDE: return Directions.OUTSIDE else: