Files
codeql/python/ql/test/3/query-tests/Variables/undefined/enum_convert.py
Owen Mansel-Chan 8e07690049 Python
2026-06-10 22:57:42 +02:00

9 lines
201 B
Python

from enum import IntEnum
IntEnum._convert(
'Maybe',
__name__,
lambda C: C.isupper() and C.startswith('AF_'))
__all__ = [ "Maybe", "Maybe_not" ] # $ Alert[py/undefined-export]