@@ -389,7 +389,7 @@ def get_inflation_reward(
389389 Returns the inflation reward for the specified addresses.
390390
391391 Args:
392- addresses (list [str]): The addresses.
392+ addresses (List [str]): The addresses.
393393 commitment (Commitment, optional): The level of commitment desired when querying state.
394394
395395 Returns:
@@ -419,7 +419,7 @@ def get_largest_accounts(
419419 def get_leader_schedule (
420420 self ,
421421 ) -> (
422- RPCResponse [dict [str , Union [List [int ], Any ]]] | dict [str , Union [List [int ], Any ]]
422+ RPCResponse [Dict [str , Union [List [int ], Any ]]] | Dict [str , Union [List [int ], Any ]]
423423 ):
424424 """
425425 Returns the leader schedule.
@@ -580,7 +580,7 @@ def get_signature_statuses(
580580 Returns the signature statuses for the specified transaction signatures.
581581
582582 Args:
583- transaction_sigs (list [str]): The transaction signatures.
583+ transaction_sigs (List [str]): The transaction signatures.
584584
585585 Returns:
586586 RPCResponse: The response from the RPC endpoint.
@@ -715,7 +715,7 @@ def get_transaction(
715715
716716 def build_and_send_request (
717717 self , method , params : List [Any ]
718- ) -> RPCResponse | dict [str , Any ] | List [dict [str , Any ]]:
718+ ) -> RPCResponse | Dict [str , Any ] | List [Dict [str , Any ]]:
719719 """
720720 Builds and sends an RPC request to the server.
721721
@@ -726,7 +726,7 @@ def build_and_send_request(
726726 Returns:
727727 RPCResponse: The response from the server.
728728 """
729- data : dict [str , Any ] = self .http .build_data (method = method , params = params )
729+ data : Dict [str , Any ] = self .http .build_data (method = method , params = params )
730730 res : RPCResponse = self .http .send (data )
731731 if self .clean_response :
732732 if "error" in res :
0 commit comments