Skip to content

Commit 271665f

Browse files
authored
feat: add __all__ to attrs_utils (#832)
* feat: all __all__ to attrs_utils * fix: remove MISSING and mixin from misc's all
1 parent 89cf886 commit 271665f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interactions/api/models/attrs_utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
import attrs
55

6+
__all__ = ("MISSING", "DictSerializerMixin", "ClientSerializerMixin")
7+
68

79
class MISSING:
810
"""A pseudosentinel based from an empty object. This does violate PEP, but, I don't care."""

interactions/api/models/misc.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,12 @@
1717
from interactions.base import get_logger
1818

1919
__all__ = (
20-
"DictSerializerMixin",
2120
"Snowflake",
2221
"Color",
2322
"ClientStatus",
2423
"Image",
2524
"File",
2625
"Overwrite",
27-
"MISSING",
2826
)
2927

3028
log: Logger = get_logger("mixin")

0 commit comments

Comments
 (0)