Files
2019-02-08 15:13:17 +00:00

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" ]