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

fix debug print

parent 1c89c616
Branches
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment