Skip to content

Commit

Permalink
fix: get properly child_sheet_name when sheets are defined in config (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
lancondrej authored Apr 18, 2024
1 parent a9931e3 commit 4be2f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_google_sheets/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def discover_streams(self) -> List[Stream]:

stream_schema = self.get_schema(google_sheet_data)

child_sheet_name = self.config.get(
child_sheet_name = stream_config.get(
"child_sheet_name"
) or self.get_first_visible_child_sheet_name(google_sheet_data)

Expand Down

0 comments on commit 4be2f7b

Please sign in to comment.