Skip to content

Commit

Permalink
Merge pull request #1167 from userlocalhost/bugfix/attr_types/use_int…
Browse files Browse the repository at this point in the history
…enum

Change super-class of AttrType from IntFlag to IntEnum
  • Loading branch information
hinashi authored May 16, 2024
2 parents e6ea68e + 8b33380 commit 04e97dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airone/lib/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


@enum.unique
class AttrType(enum.IntFlag):
class AttrType(enum.IntEnum):
OBJECT = 1 << 0
STRING = 1 << 1
TEXT = 1 << 2
Expand Down

0 comments on commit 04e97dc

Please sign in to comment.