Skip to content
Snippets Groups Projects
Commit 56fc5efb authored by Vincent Texier's avatar Vincent Texier
Browse files

[enh] #181 move crc_pubkey.py to key package (BBC)

parent 717b63fb
No related branches found
No related tags found
2 merge requests!157v1.0.0rc0: merge dev into master,!154#181 move crc_pubkey.py to key package (BBC)
Pipeline #13109 waiting for manual action
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
from .block import Block from .block import Block
from .block_uid import BlockUID, block_uid from .block_uid import BlockUID, block_uid
from .certification import Certification from .certification import Certification
from .crc_pubkey import CRCPubkey
from .document import Document, MalformedDocumentError from .document import Document, MalformedDocumentError
from .identity import Identity from .identity import Identity
from .membership import Membership from .membership import Membership
......
...@@ -19,8 +19,8 @@ from typing import Type, TypeVar ...@@ -19,8 +19,8 @@ from typing import Type, TypeVar
import base58 import base58
from ..constants import PUBKEY_REGEX from duniterpy.constants import PUBKEY_REGEX
from ..tools import ensure_str from duniterpy.tools import ensure_str
# required to type hint cls in classmethod # required to type hint cls in classmethod
CRCPubkeyType = TypeVar("CRCPubkeyType", bound="CRCPubkey") CRCPubkeyType = TypeVar("CRCPubkeyType", bound="CRCPubkey")
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
import unittest import unittest
from duniterpy.documents.crc_pubkey import CRCPubkey from duniterpy.key.crc_pubkey import CRCPubkey
class TestCRCPubkey(unittest.TestCase): class TestCRCPubkey(unittest.TestCase):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment