From 44bb062886351eb7c8cfe5d3eee95c159b40c8e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20B=C4=83ncioiu?= Date: Thu, 24 Oct 2024 18:36:57 +0300 Subject: [PATCH] Fix type annotation for SmartContractQueriesController.query(). --- multiversx_sdk/core/smart_contract_queries_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multiversx_sdk/core/smart_contract_queries_controller.py b/multiversx_sdk/core/smart_contract_queries_controller.py index dbd5fe1d..8d3b78ba 100644 --- a/multiversx_sdk/core/smart_contract_queries_controller.py +++ b/multiversx_sdk/core/smart_contract_queries_controller.py @@ -33,7 +33,7 @@ def query( self, contract: str, function: str, - arguments: List[bytes], + arguments: List[Any], caller: Optional[str] = None, value: Optional[int] = None ):