From 0f92a1478f7b48bca414b50af25cb016f2064735 Mon Sep 17 00:00:00 2001 From: fphemeral <fphemeral@i2pmail.org> Date: Sat, 20 Feb 2021 16:35:02 +0000 Subject: [PATCH] fix debug print --- briar_repl/contacts.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/briar_repl/contacts.py b/briar_repl/contacts.py index f0900aa..5e1f44b 100644 --- a/briar_repl/contacts.py +++ b/briar_repl/contacts.py @@ -86,8 +86,7 @@ async def show_contact_info(contact_str=None): if not contact_str: print("not contact was specified") contact_str = await ps.prompt_async("please specify contact:") - print(f"now got: {contact_str}") - return + # print(f"now got: {contact_str}") contact = await get_contact_id_by_alias(contact_str) if not contact: print(f"contact {contact_str} not found") @@ -156,10 +155,6 @@ async def remove_pending_contact(contact_str): topic="get_pending_contacts", params=remove_contact, ) - import httpx - httpx.delete( - URLS.contacts_pending, - ) return json_resp -- GitLab