We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8671593 commit 8651656Copy full SHA for 8651656
src/sqlacodegen/cli.py
@@ -71,7 +71,7 @@ def main() -> None:
71
metadata = MetaData()
72
tables = args.tables.split(",") if args.tables else None
73
schemas = args.schemas.split(",") if args.schemas else [None]
74
- options = set(args.option.split(",")) if args.options else set()
+ options = set(args.options.split(",")) if args.options else set()
75
for schema in schemas:
76
metadata.reflect(engine, schema, not args.noviews, tables)
77
0 commit comments