We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaf9825 commit 0fe97c0Copy full SHA for 0fe97c0
ingestr/src/linkedin_ads/__init__.py
@@ -188,7 +188,9 @@ def lead_form_responses(
188
) -> Iterable[TDataItem]:
189
fromDate = submittedAt.start_value
190
toDate = (
191
- submittedAt.end_value if submittedAt.end_value else int(pendulum.now(tz="UTC").int_timestamp * 1000)
+ submittedAt.end_value
192
+ if submittedAt.end_value
193
+ else int(pendulum.now(tz="UTC").int_timestamp * 1000)
194
)
195
196
for ad_account in ad_accounts:
0 commit comments