Skip to content

Commit

Permalink
fix: Replace 1-tuple enum values with ints (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbelak-dtml authored Jul 26, 2023
1 parent f02bc88 commit 2eab967
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions edvart/data_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
class DataType(IntEnum):
"""Class describe possible data types."""

NUMERIC = (1,)
CATEGORICAL = (2,)
BOOLEAN = (3,)
DATE = (4,)
NUMERIC = 1
CATEGORICAL = 2
BOOLEAN = 3
DATE = 4
UNKNOWN = 5

def __str__(self):
Expand Down

0 comments on commit 2eab967

Please sign in to comment.