Skip to content

Commit e3a13dc

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 57cb869 commit e3a13dc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tap_linkedin_ads/streams/streams.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ def post_process(self, row: dict, context: dict | None = None) -> dict | None:
6363
# Manual date filtering
6464
date = datetime.fromisoformat(row["last_modified_time"])
6565
start_date = self.get_starting_timestamp(context)
66-
end_date = datetime.fromisoformat(self.config["end_date"]).replace(tzinfo=timezone.utc)
66+
end_date = datetime.fromisoformat(self.config["end_date"]).replace(
67+
tzinfo=timezone.utc
68+
)
6769
if date >= start_date and date <= end_date:
6870
return super().post_process(row, context)
6971
return None

0 commit comments

Comments
 (0)