From 167cbf02e2918f8b3a65f0f11912623068b385b6 Mon Sep 17 00:00:00 2001 From: Maksim Bober Date: Sat, 9 Nov 2024 19:17:37 +0000 Subject: [PATCH] Make params required as it should be --- py_clob_client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py_clob_client/client.py b/py_clob_client/client.py index a63958f..afc21d6 100644 --- a/py_clob_client/client.py +++ b/py_clob_client/client.py @@ -616,7 +616,7 @@ def drop_notifications(self, params: DropNotificationParams = None): ) return delete(url, headers=headers) - def get_balance_allowance(self, params: BalanceAllowanceParams = None): + def get_balance_allowance(self, params: BalanceAllowanceParams): """ Fetches the balance & allowance for a user Requires Level 2 authentication