Skip to content
Snippets Groups Projects
Commit cfb3347d authored by Moul's avatar Moul
Browse files

[fix] #162: Fix cyclic import issue in ascii_armor

Found after imports sorting
parent b3950216
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,9 @@ from typing import Any, Dict, List, Optional ...@@ -22,7 +22,9 @@ from typing import Any, Dict, List, Optional
import libnacl import libnacl
from libnacl.version import version as libnacl_version from libnacl.version import version as libnacl_version
from duniterpy.key import PublicKey, SigningKey, VerifyingKey from .encryption_key import PublicKey
from .signing_key import SigningKey
from .verifying_key import VerifyingKey
# Headers constants # Headers constants
BEGIN_MESSAGE_HEADER = "-----BEGIN DUNITER MESSAGE-----" BEGIN_MESSAGE_HEADER = "-----BEGIN DUNITER MESSAGE-----"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment