Skip to content

Commit f0e7ae4

Browse files
committed
fix mypy error
1 parent 0953657 commit f0e7ae4

File tree

1 file changed

+1
-0
lines changed
  • airbyte_cdk/connector_builder/test_reader

1 file changed

+1
-0
lines changed

airbyte_cdk/connector_builder/test_reader/helpers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ 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
292293
is_page_http_request(json_message)
293294
and json_message.get("airbyte_cdk", {}).get("stream", {}).get("name", "") != stream_name
294295
)

0 commit comments

Comments
 (0)