@@ -495,6 +495,7 @@ async def sign_deploy_account_v1_transaction(
495495 max_fee : Optional [int ] = None ,
496496 auto_estimate : bool = False ,
497497 ) -> DeployAccountV1 :
498+ # pylint: disable=too-many-arguments
498499 deploy_account_tx = DeployAccountV1 (
499500 class_hash = class_hash ,
500501 contract_address_salt = contract_address_salt ,
@@ -522,6 +523,7 @@ async def sign_deploy_account_v3_transaction(
522523 l1_resource_bounds : Optional [ResourceBounds ] = None ,
523524 auto_estimate : bool = False ,
524525 ) -> DeployAccountV3 :
526+ # pylint: disable=too-many-arguments
525527 deploy_account_tx = DeployAccountV3 (
526528 class_hash = class_hash ,
527529 contract_address_salt = contract_address_salt ,
@@ -596,6 +598,8 @@ async def deploy_account_v1(
596598 max_fee : Optional [int ] = None ,
597599 auto_estimate : bool = False ,
598600 ) -> AccountDeploymentResult :
601+ # pylint: disable=too-many-arguments, too-many-locals
602+
599603 """
600604 Deploys an account contract with provided class_hash on Starknet and returns
601605 an AccountDeploymentResult that allows waiting for transaction acceptance.
@@ -669,6 +673,8 @@ async def deploy_account_v3(
669673 l1_resource_bounds : Optional [ResourceBounds ] = None ,
670674 auto_estimate : bool = False ,
671675 ) -> AccountDeploymentResult :
676+ # pylint: disable=too-many-arguments
677+
672678 """
673679 Deploys an account contract with provided class_hash on Starknet and returns
674680 an AccountDeploymentResult that allows waiting for transaction acceptance.
0 commit comments