Skip to content

Commit

Permalink
Update singer_sdk/mapper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Mar 24, 2023
1 parent 223c202 commit 5988c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ def register_raw_stream_schema(

for stream_map_key, stream_def in self.stream_maps_dict.items():
stream_def = (
dict(stream_def) if isinstance(stream_def, dict) else stream_def
stream_def.copy() if isinstance(stream_def, dict) else stream_def
)
stream_alias: str = stream_map_key
source_stream: str = stream_map_key
Expand Down

0 comments on commit 5988c83

Please sign in to comment.