Skip to content

Commit

Permalink
fix: remove extra __all__ methods (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
cofin authored Sep 30, 2023
1 parent ed3296b commit e59ee24
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contribution guide
Setting up the environment
--------------------------

1. Install `Pizza Delivery Man <https://pdm.fming.dev/latest/>`_
1. Install `PDM <https://pdm.fming.dev/latest/>`_
2. Run ``pdm install -G:all`` to create a `virtual environment <https://docs.python.org/3/tutorial/venv.html>`_ and install
the dependencies
3. If you're working on the documentation and need to build it locally, install the extra dependencies with ``pdm install -G:docs``
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ from advanced_alchemy.extensions.litestar.plugins.init.config import SQLAlchemyA

from litestar import Litestar

plugin = SQLAlchemyPlugin(config=SQLAlchemyAsyncConfig())
plugin = SQLAlchemyPlugin(config=SQLAlchemyAsyncConfig(connection_string="sqlite+aiosqlite:///test.sqlite"))


app = Litestar(plugins=[plugin])
Expand Down
7 changes: 0 additions & 7 deletions advanced_alchemy/extensions/litestar/plugins/init/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,8 @@
from .plugin import SQLAlchemyInitPlugin

__all__ = (
"AsyncSessionConfig",
"EngineConfig",
"GenericSQLAlchemyConfig",
"GenericSessionConfig",
"GenericAlembicConfig",
"SQLAlchemyAsyncConfig",
"SQLAlchemyInitPlugin",
"SQLAlchemySyncConfig",
"SyncSessionConfig",
"AlembicAsyncConfig",
"AlembicSyncConfig",
)

0 comments on commit e59ee24

Please sign in to comment.