From c21dff3df89dd6557084d5ed755f3b4888656dbe Mon Sep 17 00:00:00 2001 From: kompotkot Date: Thu, 27 Oct 2022 15:38:58 +0000 Subject: [PATCH] Fix slash issues --- clients/python/moonstream/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/moonstream/client.py b/clients/python/moonstream/client.py index 036afa5e..238f126b 100644 --- a/clients/python/moonstream/client.py +++ b/clients/python/moonstream/client.py @@ -128,7 +128,7 @@ class Moonstream: } response = self._call( method=Method.POST, - url=f"{self.api.endpoints[ENDPOINT_QUERIES]}", + url=f"{self.api.endpoints[ENDPOINT_QUERIES]}/", headers=headers, json=json, timeout=timeout,