Files
codeql/python/ql/test/3/query-tests/Variables/undefined/enum_convert.py
2026-06-15 16:15:17 +01: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]