Skip to content

Commit

Permalink
"Fix __all__ ordering in audible module for consistency
Browse files Browse the repository at this point in the history
Rearranged the __all__ list in alphabetical order to improve readability and maintain consistency. This change has no functional impact but aligns with best practices for module exports."
  • Loading branch information
mkb79 committed Dec 25, 2024
1 parent f808aad commit 6df5e4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audible/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .client import AsyncClient, Client


__all__ = ["__version__", "Authenticator", "log_helper", "Client", "AsyncClient"]
__all__ = ["AsyncClient", "Authenticator", "Client", "__version__", "log_helper"]

0 comments on commit 6df5e4d

Please sign in to comment.