From 184d809603e07a3f2f44fcfae5490d893de810a2 Mon Sep 17 00:00:00 2001 From: Believethehype <1097224+believethehype@users.noreply.github.com> Date: Mon, 25 Nov 2024 09:15:41 +0100 Subject: [PATCH] remove print --- nostr_dvm/dvm.py | 2 +- tests/search.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nostr_dvm/dvm.py b/nostr_dvm/dvm.py index 1ec639b..d239c78 100644 --- a/nostr_dvm/dvm.py +++ b/nostr_dvm/dvm.py @@ -635,7 +635,7 @@ class DVM: reply_event = EventBuilder(Kind(original_event.kind().as_u16() + 1000), str(content)).tags(reply_tags).sign_with_keys( self.keys) - print(reply_event) + #print(reply_event) # send_event(reply_event, client=self.client, dvm_config=self.dvm_config) await send_event_outbox(reply_event, client=self.client, dvm_config=self.dvm_config) if self.dvm_config.LOGLEVEL.value >= LogLevel.DEBUG.value: diff --git a/tests/search.py b/tests/search.py index 2cb264f..07e5629 100644 --- a/tests/search.py +++ b/tests/search.py @@ -207,8 +207,8 @@ def playground(): advanced_search_wine = build_advanced_search_wine("Nostr.wine Search", "discovery_content_searchwine") advanced_search_wine.run() - #profile_search = build_user_search("Profile Searcher", "profile_search") - #profile_search.run() + profile_search = build_user_search("Profile Searcher", "profile_search") + profile_search.run()