From c0d77808e757ae36fd1000c8b803f410a9174fba Mon Sep 17 00:00:00 2001 From: Believethehype <1097224+believethehype@users.noreply.github.com> Date: Thu, 6 Jun 2024 02:25:56 +0200 Subject: [PATCH] Update nostr_utils.py --- nostr_dvm/utils/nostr_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostr_dvm/utils/nostr_utils.py b/nostr_dvm/utils/nostr_utils.py index 1db4302..c535252 100644 --- a/nostr_dvm/utils/nostr_utils.py +++ b/nostr_dvm/utils/nostr_utils.py @@ -42,7 +42,7 @@ def get_event_by_id(event_id: str, client: Client, config=None) -> Event | None: return None async def get_events_async(client, filter, timeout): - events = client.get_events_of([filter], timedelta(seconds=timeout) + events = client.get_events_of([filter], timedelta(seconds=timeout)) return events