Skip to content

Commit

Permalink
fix: Fix start_date retrieval (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jun 20, 2024
1 parent f1236fe commit 761d844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_klaviyo/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def get_url_params(
if self.get_starting_timestamp(context):
filter_timestamp = self.get_starting_timestamp(context)
elif self.config.get("start_date"):
filter_timestamp = _isodate_from_date_string(self.config("start_date"))
filter_timestamp = _isodate_from_date_string(self.config.get("start_date"))
else:
filter_timestamp = DEFAULT_START_DATE

Expand Down

0 comments on commit 761d844

Please sign in to comment.