py-slippi icon indicating copy to clipboard operation
py-slippi copied to clipboard

Fix repr of IntFlag enums (issue 47)

Open Kered13 opened this issue 1 year ago • 0 comments

Fixes #47

The enum._decompose method has been removed in newer versions of Python (at least >=3.11). The name indicates that it was private and should not have been used in the first place. The new implementation uses only documented public methods of the enum library. The repr format should be the exact same.

Kered13 avatar Mar 17 '23 23:03 Kered13