mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
run lint and fix errors, except mypy
This commit is contained in:
@ -1,5 +1,10 @@
|
||||
from libp2p.crypto.ed25519 import create_new_key_pair
|
||||
from libp2p.crypto.serialization import deserialize_private_key, deserialize_public_key
|
||||
from libp2p.crypto.ed25519 import (
|
||||
create_new_key_pair,
|
||||
)
|
||||
from libp2p.crypto.serialization import (
|
||||
deserialize_private_key,
|
||||
deserialize_public_key,
|
||||
)
|
||||
|
||||
|
||||
def test_public_key_serialize_deserialize_round_trip():
|
||||
|
||||
@ -1,5 +1,10 @@
|
||||
from libp2p.crypto.secp256k1 import create_new_key_pair
|
||||
from libp2p.crypto.serialization import deserialize_private_key, deserialize_public_key
|
||||
from libp2p.crypto.secp256k1 import (
|
||||
create_new_key_pair,
|
||||
)
|
||||
from libp2p.crypto.serialization import (
|
||||
deserialize_private_key,
|
||||
deserialize_public_key,
|
||||
)
|
||||
|
||||
|
||||
def test_public_key_serialize_deserialize_round_trip():
|
||||
|
||||
Reference in New Issue
Block a user