diff --git a/tap_linkedin_ads/streams/streams.py b/tap_linkedin_ads/streams/streams.py index 866626d..6e631d0 100644 --- a/tap_linkedin_ads/streams/streams.py +++ b/tap_linkedin_ads/streams/streams.py @@ -63,7 +63,9 @@ def post_process(self, row: dict, context: dict | None = None) -> dict | None: # Manual date filtering date = datetime.fromisoformat(row["last_modified_time"]) start_date = self.get_starting_timestamp(context) - end_date = datetime.fromisoformat(self.config["end_date"]).replace(tzinfo=timezone.utc) + end_date = datetime.fromisoformat(self.config["end_date"]).replace( + tzinfo=timezone.utc + ) if date >= start_date and date <= end_date: return super().post_process(row, context) return None