Skip to content
Snippets Groups Projects
Commit 0f92a147 authored by fphemeral's avatar fphemeral
Browse files

fix debug print

parent 1c89c616
No related branches found
No related tags found
No related merge requests found
...@@ -86,8 +86,7 @@ async def show_contact_info(contact_str=None): ...@@ -86,8 +86,7 @@ async def show_contact_info(contact_str=None):
if not contact_str: if not contact_str:
print("not contact was specified") print("not contact was specified")
contact_str = await ps.prompt_async("please specify contact:") contact_str = await ps.prompt_async("please specify contact:")
print(f"now got: {contact_str}") # print(f"now got: {contact_str}")
return
contact = await get_contact_id_by_alias(contact_str) contact = await get_contact_id_by_alias(contact_str)
if not contact: if not contact:
print(f"contact {contact_str} not found") print(f"contact {contact_str} not found")
...@@ -156,10 +155,6 @@ async def remove_pending_contact(contact_str): ...@@ -156,10 +155,6 @@ async def remove_pending_contact(contact_str):
topic="get_pending_contacts", topic="get_pending_contacts",
params=remove_contact, params=remove_contact,
) )
import httpx
httpx.delete(
URLS.contacts_pending,
)
return json_resp return json_resp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment