From eeff59a61f102d6a1ee80bdc233642f3546be815 Mon Sep 17 00:00:00 2001 From: Fabian Gebhart <16943048+fgebhart@users.noreply.github.com> Date: Wed, 15 Jan 2025 15:37:58 +0100 Subject: [PATCH] fix typo --- aleph_alpha_client/aleph_alpha_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aleph_alpha_client/aleph_alpha_client.py b/aleph_alpha_client/aleph_alpha_client.py index 9c6431c..fe91324 100644 --- a/aleph_alpha_client/aleph_alpha_client.py +++ b/aleph_alpha_client/aleph_alpha_client.py @@ -826,7 +826,7 @@ async def _post_request_with_streaming( if not stream_item_as_str.startswith(self.SSE_DATA_PREFIX): raise ValueError( - f"Stream item did not start with `{self.SSE_DATA_PREFIX}`. Was `{stream_item_as_str}" + f"Stream item did not start with `{self.SSE_DATA_PREFIX}`. Was `{stream_item_as_str}`" ) payload = stream_item_as_str[len(self.SSE_DATA_PREFIX) :]