Skip to content

Commit a4fe583

Browse files
committed
Use IntEnum instead of IntFlags
IntFlags is not available before Python 3.6, even with the backport module
1 parent 867ddfa commit a4fe583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javaobj/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class TerminalCode(enum.IntEnum):
7676
# TC_MAX = 0x7E
7777

7878

79-
class ClassDescFlags(enum.IntFlag):
79+
class ClassDescFlags(enum.IntEnum):
8080
"""
8181
Class description flags
8282
"""

0 commit comments

Comments
 (0)