Skip to content

Commit 70f9b12

Browse files
committed
fix linting issue
1 parent be1f7ea commit 70f9b12

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

pactus/crypto/secp256k1/public_key.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,7 @@ def verify(self, msg: bytes, sig: Signature) -> bool:
6161
sig_compact = sig.raw_bytes()
6262
sig_deserialized = self.pub.ecdsa_deserialize_compact(sig_compact)
6363
return self.pub.ecdsa_verify(msg, sig_deserialized)
64+
65+
# ruff: noqa: BLE001 # unable to fix this issue
6466
except Exception:
6567
return False

0 commit comments

Comments
 (0)