From 383f49e0b23f914378f386e77ee21114262652dc Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Mon, 13 Feb 2023 22:22:50 +0100 Subject: [PATCH] fix default pubkey --- nostr/key.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostr/key.py b/nostr/key.py index d34697f..6988964 100644 --- a/nostr/key.py +++ b/nostr/key.py @@ -12,7 +12,7 @@ from . import bech32 class PublicKey: - def __init__(self, raw_bytes: bytes) -> None: + def __init__(self, raw_bytes: bytes = None) -> None: self.raw_bytes = raw_bytes def bech32(self) -> str: