Skip to content

Commit

Permalink
add s
Browse files Browse the repository at this point in the history
  • Loading branch information
twar59 committed Sep 14, 2023
1 parent 8671593 commit 5243a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sqlacodegen/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def main() -> None:
metadata = MetaData()
tables = args.tables.split(",") if args.tables else None
schemas = args.schemas.split(",") if args.schemas else [None]
options = set(args.option.split(",")) if args.options else set()
options = set(args.options.split(",")) if args.options else set()
for schema in schemas:
metadata.reflect(engine, schema, not args.noviews, tables)

Expand Down

0 comments on commit 5243a23

Please sign in to comment.