From 3076544e3842d84bd41b049b2b5b5c3f3ec174bb Mon Sep 17 00:00:00 2001 From: Vftdan Date: Mon, 1 Jul 2024 18:29:01 +0200 Subject: [PATCH] Make replies_to_other_accounts_should_not_be_skipped a keyword argument of listen --- mastoposter/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastoposter/__main__.py b/mastoposter/__main__.py index d21f28f..37b4a0b 100644 --- a/mastoposter/__main__.py +++ b/mastoposter/__main__.py @@ -64,8 +64,8 @@ async def listen( source: Callable[..., AsyncGenerator[Status, None]], drains: List[FilteredIntegration], user: str, - replies_to_other_accounts_should_not_be_skipped: bool = False, /, + replies_to_other_accounts_should_not_be_skipped: bool = False, **kwargs, ): logger.info("Starting listening...")