Skip to content

Commit

Permalink
Fix auto
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulero committed Oct 12, 2023
1 parent e19cc34 commit 99cb406
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/adam/core/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from enum import IntEnum
from enum import IntEnum, auto


class Representations(IntEnum):
BODY_FIXED_REPRESENTATION = enum.auto()
MIXED_REPRESENTATION = enum.auto()
BODY_FIXED_REPRESENTATION = auto()
MIXED_REPRESENTATION = auto()

0 comments on commit 99cb406

Please sign in to comment.