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

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

Found after imports sorting
parent ffa385a6
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,9 @@ from typing import Any, Dict, List, Optional
import libnacl
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
BEGIN_MESSAGE_HEADER = "-----BEGIN DUNITER MESSAGE-----"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment