Skip to content

Commit

Permalink
chore: su6 fix && su6 all
Browse files Browse the repository at this point in the history
  • Loading branch information
robinvandernoord committed Dec 4, 2023
1 parent 845aab3 commit 39bcd09
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/pydal2sql/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ def create(
"""
dialect = db_type.value if db_type else dialect.value if dialect else None


config = state.update_config(
magic=magic,
noop=noop,
Expand Down
2 changes: 1 addition & 1 deletion src/pydal2sql/typer_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class Config(AbstractConfig):
magic: bool = False
function: str = "define_tables"
format: SUPPORTED_OUTPUT_FORMATS = DEFAULT_OUTPUT_FORMAT # noqa: A003
dialect: typing.Optional[SUPPORTED_DATABASE_TYPES_WITH_ALIASES] = alias("db_type") # noqa: RUF009
dialect: typing.Optional[SUPPORTED_DATABASE_TYPES_WITH_ALIASES] = alias("db_type")
input: Optional[str] = None # noqa: A003
output: Optional[str] = None
noop: bool = False
Expand Down

0 comments on commit 39bcd09

Please sign in to comment.