Skip to content

Commit c8c41ed

Browse files
committed
format
1 parent f0e7ae4 commit c8c41ed

File tree

1 file changed

+2
-2
lines changed
  • airbyte_cdk/connector_builder/test_reader

1 file changed

+2
-2
lines changed

airbyte_cdk/connector_builder/test_reader/helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,8 @@ def is_page_http_request_for_different_stream(
289289
bool: True if the JSON message is a page HTTP request for a different stream, False otherwise.
290290
"""
291291
return (
292-
json_message and
293-
is_page_http_request(json_message)
292+
json_message
293+
and is_page_http_request(json_message)
294294
and json_message.get("airbyte_cdk", {}).get("stream", {}).get("name", "") != stream_name
295295
)
296296

0 commit comments

Comments
 (0)