From b765d4fbf7fdef7f30bd45c8e8a2de3da494ad87 Mon Sep 17 00:00:00 2001 From: Michael Ekstrand Date: Wed, 24 Apr 2024 20:30:22 -0400 Subject: [PATCH] fix typing of str-based one --- progress_api/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progress_api/config.py b/progress_api/config.py index 15b09c4..f5d0ef3 100644 --- a/progress_api/config.py +++ b/progress_api/config.py @@ -56,7 +56,7 @@ def set_backend( @overload -def set_backend(impl: str, *args: tuple[Any], **kwargs: dict[str, Any]) -> None: +def set_backend(impl: str, *args: Any, **kwargs: Any) -> None: ...