Skip to content

Commit

Permalink
fix typing of str-based one
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Apr 25, 2024
1 parent 88d8a96 commit b765d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion progress_api/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
...


Expand Down

0 comments on commit b765d4f

Please sign in to comment.