We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f3d905 commit bfd90e2Copy full SHA for bfd90e2
catalyst-python/src/catalyst_python/signed_doc.py
@@ -50,14 +50,14 @@ def new_version(self) -> None:
50
time.sleep(1)
51
self.metadata["ver"] = uuid_v7()
52
53
- def copy(self) -> SignedDocumentBase:
+
54
+class SignedDocument(SignedDocumentBase):
55
+ def copy(self) -> SignedDocument:
56
return SignedDocument(
57
metadata=copy.deepcopy(self.metadata),
58
content=copy.deepcopy(self.content),
59
)
60
-
-class SignedDocument(SignedDocumentBase):
61
# Build and sign document, returns hex str of document bytes
62
def build_and_sign(
63
self,
0 commit comments