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 e4c32c5 commit 1971bdaCopy full SHA for 1971bda
src/sqlacodegen/cli.py
@@ -118,7 +118,7 @@ def main() -> None:
118
engine = create_engine(args.url, **engine_args)
119
metadata = MetaData()
120
tables = args.tables.split(",") if args.tables else None
121
- schemas = args.schemas.split(",") if args.schemas else [None]
+ schemas = [schema.strip() for schema in args.schemas.split(",")] if args.schemas else [None]
122
options = set(args.options.split(",")) if args.options else set()
123
124
# Instantiate the generator
0 commit comments