We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6abd9e5 commit b8a0eacCopy full SHA for b8a0eac
src/vesta/__init__.py
@@ -10,16 +10,16 @@
10
from .clients import VBMLClient
11
12
__all__ = (
13
- "Color",
14
- "encode",
15
- "encode_row",
16
- "encode_text",
17
- "pprint",
18
"Client",
+ "Color",
19
"LocalClient",
20
"ReadWriteClient",
21
"SubscriptionClient",
22
"VBMLClient",
+ "encode",
+ "encode_row",
+ "encode_text",
+ "pprint",
23
)
24
25
__version__ = "1.0.0-dev"
src/vesta/vbml.py
@@ -100,7 +100,7 @@ class Component:
100
the ``style`` dictionary.
101
"""
102
103
- __slots__ = ["template", "raw_characters", "style"]
+ __slots__ = ["raw_characters", "style", "template"]
104
105
def __init__(
106
self,
0 commit comments