From 246f12869f3d4307fbaeca421778d1816540a2b8 Mon Sep 17 00:00:00 2001 From: Believethehype <1097224+believethehype@users.noreply.github.com> Date: Mon, 18 Nov 2024 16:11:40 +0100 Subject: [PATCH] Update bot.py --- nostr_dvm/bot.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nostr_dvm/bot.py b/nostr_dvm/bot.py index 4c87397..59d0406 100644 --- a/nostr_dvm/bot.py +++ b/nostr_dvm/bot.py @@ -28,6 +28,10 @@ class Bot: # This is a simple list just to keep track which events we created and manage, so we don't pay for other requests def __init__(self, dvm_config, admin_config=None): + self.dvm_config = None + self.keys = None + self.admin_config = None + self.client = None asyncio.run(self.run_bot(dvm_config, admin_config)) uniffi_set_event_loop(asyncio.get_running_loop())