From bc259f14ca2a10f7b2e504fde7333696063631b0 Mon Sep 17 00:00:00 2001 From: ManmathX Date: Wed, 22 Apr 2026 16:28:39 +0530 Subject: [PATCH] chore: add return type annotation to _is_payment_required in CryptoGetAccountBalanceQuery Signed-off-by: ManmathX --- src/hiero_sdk_python/query/account_balance_query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hiero_sdk_python/query/account_balance_query.py b/src/hiero_sdk_python/query/account_balance_query.py index 82e3b6578..56bcacc7c 100644 --- a/src/hiero_sdk_python/query/account_balance_query.py +++ b/src/hiero_sdk_python/query/account_balance_query.py @@ -172,7 +172,7 @@ def _get_query_response(self, response: Any) -> crypto_get_account_balance_pb2.C """ return response.cryptogetAccountBalance - def _is_payment_required(self): + def _is_payment_required(self) -> bool: """ Account balance query does not require payment.