Skip to content

Commit 5056e9f

Browse files
committed
fix f string
1 parent 353e6a8 commit 5056e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tap_exact/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def get_url_params(self, context: dict | None, next_page_token: str) -> dict[str
106106
params["$select"] = self.select
107107
start_date = self.get_starting_timestamp(context)
108108
if start_date:
109-
date_filter = f"Modified gt datetime'{start_date.strftime("%Y-%m-%dT%H:%M:%S")}'"
109+
date_filter = f"Modified gt datetime'{start_date.strftime('%Y-%m-%dT%H:%M:%S')}'"
110110
params["$filter"] = date_filter
111111
if next_page_token:
112112
params["$skiptoken"] = next_page_token

0 commit comments

Comments
 (0)