Skip to content

Commit 99d2b5c

Browse files
committed
chore: fix linting issues
1 parent 68b5859 commit 99d2b5c

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

examples/example_transfer_transaction_bls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ def main() -> None:
3030

3131
print(f"Signed transaction hex: {signed_data.hex()}")
3232

33+
3334
if __name__ == "__main__":
3435
main()

pactus/transaction/transaction.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
from pactus.crypto.address import Address
33
from pactus.crypto.private_key import PrivateKey
44
from pactus.crypto.public_key import PublicKey
5-
from pactus.encoding import encoding
65
from pactus.crypto.signature import Signature
6+
from pactus.encoding import encoding
77

88
from ._payload import (
99
BondPayload,
@@ -16,6 +16,7 @@
1616
FLAG_STRIPPED_PUBLIC_KEY = 0x01
1717
FLAG_NOT_SIGNED = 0x02
1818

19+
1920
class Transaction:
2021
def __init__(
2122
self,

ruff.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ ignore = [
5151
"D107",
5252
"D203",
5353
"D212",
54+
"TC001",
5455
"COM812",
5556
"ISC001",
5657
"D205",

0 commit comments

Comments
 (0)