Skip to content

Commit 7e642ae

Browse files
committed
Swap lines internally in enum
1 parent c8346a9 commit 7e642ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

table2ascii/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ class Alignment(enum.Enum):
1616
"""Enum for alignment types"""
1717

1818
LEFT = 0
19-
RIGHT = 1
20-
CENTER = 2
19+
CENTER = 1
20+
RIGHT = 2
2121

2222

2323
class TableToAscii:

0 commit comments

Comments
 (0)