mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
170 B
Python
9 lines
170 B
Python
from enum import IntEnum
|
|
|
|
IntEnum._convert(
|
|
'Maybe',
|
|
__name__,
|
|
lambda C: C.isupper() and C.startswith('AF_'))
|
|
|
|
__all__ = [ "Maybe", "Maybe_not" ]
|