Skip to content

Commit

Permalink
Sort names in module __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
uriyyo committed Dec 24, 2024
1 parent 73449d2 commit 8e51828
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fastapi_lifespan_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

__all__ = [
"LifespanManager",
"State",
"NoState",
"State",
]
10 changes: 5 additions & 5 deletions fastapi_lifespan_manager/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
]

__all__ = [
"TApp",
"State",
"NoState",
"AnyContextManager",
"AnyIterator",
"AnyState",
"Lifespan",
"NoState",
"RawLifespan",
"AnyContextManager",
"AnyIterator",
"State",
"TApp",
]

0 comments on commit 8e51828

Please sign in to comment.