more linty cleanup

This commit is contained in:
Kyle Altendorf 2022-08-17 14:46:04 -04:00
parent 8f2646e3d9
commit f5b1a02fd3
No known key found for this signature in database
GPG Key ID: 5715D880FF005192
3 changed files with 14 additions and 16 deletions

View File

@ -121,7 +121,6 @@ extend_skip=
chia/wallet/util/compute_hints.py
chia/wallet/util/compute_memos.py
chia/wallet/util/debug_spend_bundle.py
chia/wallet/util/merkle_tree.py
chia/wallet/util/puzzle_compression.py
chia/wallet/util/wallet_sync_utils.py
chia/wallet/wallet_blockchain.py

View File

@ -1,12 +1,12 @@
import math
from typing import List, Optional, Tuple
from enum import Enum
from chia.types.blockchain_format.sized_bytes import bytes32
from chia.util.hash import std_hash
from typing import List, Optional, Tuple
from clvm.casts import int_to_bytes
from chia.types.blockchain_format.sized_bytes import bytes32
from chia.util.hash import std_hash
ONE = int_to_bytes(1)
TWO = int_to_bytes(2)

File diff suppressed because one or more lines are too long