File tree 1 file changed +2
-2
lines changed
airbyte-integrations/connectors/source-google-ads/source_google_ads
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ def read_records(
189
189
and update `start_date` key in the `stream_slice` with the latest read record's cursor value, then retry the sync.
190
190
"""
191
191
while True :
192
- self .logger .info (f "Starting a while loop iteration" )
192
+ self .logger .info ("Starting a while loop iteration" )
193
193
customer_id = stream_slice and stream_slice ["customer_id" ]
194
194
try :
195
195
records = super ().read_records (sync_mode , stream_slice = stream_slice )
@@ -231,7 +231,7 @@ def read_records(
231
231
raise exception
232
232
else :
233
233
# return the control if no exception is raised
234
- self .logger .info (f "Current slice has been read. Exiting read_records()" )
234
+ self .logger .info ("Current slice has been read. Exiting read_records()" )
235
235
return
236
236
237
237
def get_query (self , stream_slice : Mapping [str , Any ] = None ) -> str :
You can’t perform that action at this time.
0 commit comments