File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
airbyte_cdk/sources/declarative/retrievers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -670,7 +670,7 @@ def _fetch_next_page(
670670 stream_slice : StreamSlice ,
671671 next_page_token : Optional [Mapping [str , Any ]] = None ,
672672 ) -> Optional [requests .Response ]:
673- is_dynamic_schema_call = ( self .name == "dynamic_properties" )
673+ is_dynamic_schema_call = self .name == "dynamic_properties"
674674 return self .requester .send_request (
675675 path = self ._paginator_path (
676676 next_page_token = next_page_token ,
@@ -705,7 +705,7 @@ def _fetch_next_page(
705705 f"Stream '{ self .name } ' request" ,
706706 f"Request performed in order to extract records for stream '{ self .name } '" ,
707707 self .name ,
708- is_auxiliary = is_dynamic_schema_call # Mark schema discovery calls as auxiliary for cleaner logs
708+ is_auxiliary = is_dynamic_schema_call , # Mark schema discovery calls as auxiliary for cleaner logs
709709 ),
710710 )
711711
You can’t perform that action at this time.
0 commit comments