Skip to content

Commit ec212db

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 71f7f2d commit ec212db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/retrievers/simple_retriever.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)