Skip to content

Commit

Permalink
Merge pull request #19 from railsware/CPL-16235/do-not-fetch-by-days-…
Browse files Browse the repository at this point in the history
…if-not-specified

[CPL-16235] Fetch data by specified date columns only
  • Loading branch information
Danichella committed Aug 13, 2024
2 parents 7e5d679 + 36486d2 commit fced4a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_google_ads/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ def build_stream_metadata(self):
# Add inclusion metadata
if self.behavior[report_field]:
inclusion = "available"
if transformed_field_name in ({"date"} | self.automatic_keys):
if transformed_field_name in self.automatic_keys:
inclusion = "automatic"
else:
inclusion = "unsupported"
Expand Down

0 comments on commit fced4a0

Please sign in to comment.