Skip to content

Commit e132c39

Browse files
committed
add __all__ to meta
1 parent 8e2d4bc commit e132c39

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

enum_properties/meta.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@
1212
from enum import Enum, EnumMeta
1313

1414

15+
__all__ = [
16+
'EnumProperties',
17+
'EnumPropertiesMeta',
18+
'SymmetricMixin',
19+
'p',
20+
's'
21+
]
22+
23+
1524
def _do_casenorm(text):
1625
"""Normalize unicode text to be case agnostic."""
1726
return unicodedata.normalize('NFKD', text.casefold())

0 commit comments

Comments
 (0)