Skip to content

Commit

Permalink
Ignore pylint too-many-positional-arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
coderofstuff committed Nov 29, 2024
1 parent 485f747 commit 02e1570
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/application_client/kaspa_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class TransactionError(Exception):
pass

class TransactionInput:
# pylint: disable=too-many-positional-arguments
def __init__(self,
value: int,
tx_id: str,
Expand Down Expand Up @@ -77,6 +78,7 @@ def from_bytes(cls, hexa: Union[bytes, BytesIO]):
return cls(value=value, script_public_key=script_public_key)

class Transaction:
# pylint: disable=too-many-positional-arguments
def __init__(self,
version: int,
inputs: list[TransactionInput],
Expand Down

0 comments on commit 02e1570

Please sign in to comment.