Skip to content

Commit 736eb99

Browse files
authored
feat: Make Alignment an IntEnum to support numbers 0-2 (#75)
1 parent 7899426 commit 736eb99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

table2ascii/alignment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from enum import Enum
1+
from enum import IntEnum
22

33

4-
class Alignment(Enum):
4+
class Alignment(IntEnum):
55
"""Enum for text alignment types within a table cell
66
77
Example::

0 commit comments

Comments
 (0)