INNER CODE UNIT · Python
show_branches
litestar-org/advanced-alchemy · advanced_alchemy/cli.py:417
def show_branches(bind_key: Optional[str], verbose: bool) -> None: # pyright: ignore[reportUnusedFunction]
"""Show branch points."""
from advanced_alchemy.alembic.commands import AlembicCommands
ctx = cast("click.Context", click.get_current_context())
console.rule("[yellow]Showing branch points[/]", align="left")
sqlalchemy_config = get_config_by_bind_key(ctx, bind_key)
alembic_commands = AlembicCommands(sqlalchemy_config=sqlalchemy_config)
alembic_commands.branches(verbose=verbose)
@database_group.command(
name="list-templates",
help="List available Alembic migration templates",
)
@bind_key_option
def list_init_templates(bind_key: Optional[str]) -> None: # pyright: ignore[reportUnusedFunction]
"""List available initialization templates."""
from advanced_alchemy.alembic.commands import AlembicCommands