diff --git a/briar_repl/contacts.py b/briar_repl/contacts.py index f0900aa73ef1e02e327e992684d336a23b9e4057..5e1f44b5ea6122fde64cb40d699f2c1ffaa0dcff 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