Skip to content

Commit

Permalink
fixed Enum because Python3.8 ...
Browse files Browse the repository at this point in the history
  • Loading branch information
MideDay committed Dec 1, 2023
1 parent ad5c2ce commit 6ca982d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/giskardpy/suturo_types.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from enum import StrEnum, unique
from enum import unique, Enum


@unique
class gripper_types(StrEnum):
class gripper_types(Enum):
OPEN = 'open'
CLOSE = 'close'
NEUTRAL = 'neutral'

0 comments on commit 6ca982d

Please sign in to comment.