Skip to content

Commit b8a0eac

Browse files
authored
Sort __all__ and __slots__ (#196)
1 parent 6abd9e5 commit b8a0eac

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/vesta/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
from .clients import VBMLClient
1111

1212
__all__ = (
13-
"Color",
14-
"encode",
15-
"encode_row",
16-
"encode_text",
17-
"pprint",
1813
"Client",
14+
"Color",
1915
"LocalClient",
2016
"ReadWriteClient",
2117
"SubscriptionClient",
2218
"VBMLClient",
19+
"encode",
20+
"encode_row",
21+
"encode_text",
22+
"pprint",
2323
)
2424

2525
__version__ = "1.0.0-dev"

src/vesta/vbml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class Component:
100100
the ``style`` dictionary.
101101
"""
102102

103-
__slots__ = ["template", "raw_characters", "style"]
103+
__slots__ = ["raw_characters", "style", "template"]
104104

105105
def __init__(
106106
self,

0 commit comments

Comments
 (0)