You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the default init.py uses the catalog dict, it accesses it using "catalog.key" rather than "catalog.get('key')". This is not proper python code and will not run.
Examples:
line 54: "for stream in catalog.streams:"
line 55: "stream_metadata = metadata.to_map(stream.metadata)"
The text was updated successfully, but these errors were encountered:
When the default init.py uses the catalog dict, it accesses it using "catalog.key" rather than "catalog.get('key')". This is not proper python code and will not run.
Examples:
line 54: "for stream in catalog.streams:"
line 55: "stream_metadata = metadata.to_map(stream.metadata)"
The text was updated successfully, but these errors were encountered: