Skip to content

Commit

Permalink
Sort __all__ and __slots__
Browse files Browse the repository at this point in the history
  • Loading branch information
jparise committed Nov 25, 2024
1 parent 0fbad6f commit 36afb2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/vesta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
from .clients import VBMLClient

__all__ = (
"Color",
"encode",
"encode_row",
"encode_text",
"pprint",
"Client",
"Color",
"LocalClient",
"ReadWriteClient",
"SubscriptionClient",
"VBMLClient",
"encode",
"encode_row",
"encode_text",
"pprint",
)

__version__ = "1.0.0-dev"
2 changes: 1 addition & 1 deletion src/vesta/vbml.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Component:
the ``style`` dictionary.
"""

__slots__ = ["template", "raw_characters", "style"]
__slots__ = ["raw_characters", "style", "template"]

def __init__(
self,
Expand Down

0 comments on commit 36afb2c

Please sign in to comment.