remove unnecessary arguemnt for HttpClient.post in cli_inbox_follow

This commit is contained in:
Izalia Mae 2024-02-18 11:52:16 -05:00
parent 3391749800
commit e156f3e532

View file

@ -537,7 +537,7 @@ def cli_inbox_follow(ctx: click.Context, actor: str) -> None:
actor = actor actor = actor
) )
asyncio.run(http.post(inbox, message, None, inbox_data)) asyncio.run(http.post(inbox, message, inbox_data))
click.echo(f'Sent follow message to actor: {actor}') click.echo(f'Sent follow message to actor: {actor}')