refactor: remove redundant # type: ignore

This commit is contained in:
Vlad Stan
2023-01-10 09:45:12 +02:00
parent 8cd6c7c9bc
commit c370bd18c6
30 changed files with 54 additions and 53 deletions
+3 -3
View File
@@ -4,12 +4,12 @@ import time
from decimal import Decimal
from typing import List, NamedTuple, Optional
import bitstring # type: ignore
import bitstring
import embit
import secp256k1
from bech32 import CHARSET, bech32_decode, bech32_encode
from ecdsa import SECP256k1, VerifyingKey # type: ignore
from ecdsa.util import sigdecode_string # type: ignore
from ecdsa import SECP256k1, VerifyingKey
from ecdsa.util import sigdecode_string
class Route(NamedTuple):