Skip to content

Commit 2fd2a65

Browse files
committed
fix decompose for py < 3.11
1 parent ca4b8fb commit 2fd2a65

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/django_enum/utils.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,8 @@ def decompose(flags: Optional[F]) -> List[F]:
250250
if not flags:
251251
return []
252252
if sys.version_info < (3, 11):
253-
return [flg for flg in type(flags) if flg in flags and flg is not flags(0)]
253+
return [
254+
flg for flg in type(flags) if flg in flags and flg is not type(flags)(0)
255+
]
254256
else:
255257
return list(flags) # type: ignore[arg-type]

0 commit comments

Comments
 (0)