Skip to content

Commit 8651656

Browse files
authored
Fixed broken command line options (#283)
1 parent 8671593 commit 8651656

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sqlacodegen/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def main() -> None:
7171
metadata = MetaData()
7272
tables = args.tables.split(",") if args.tables else None
7373
schemas = args.schemas.split(",") if args.schemas else [None]
74-
options = set(args.option.split(",")) if args.options else set()
74+
options = set(args.options.split(",")) if args.options else set()
7575
for schema in schemas:
7676
metadata.reflect(engine, schema, not args.noviews, tables)
7777

0 commit comments

Comments
 (0)