Skip to content

Commit b5761de

Browse files
authored
Fix class FluentBundle functions parameter typing
1 parent e4fc3c2 commit b5761de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fluent.runtime/fluent/runtime/bundle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class FluentBundle:
3535
def __init__(
3636
self,
3737
locales: List[str],
38-
functions: Union[Dict[str, Callable[[Any], "FluentType"]], None] = None,
38+
functions: Union[Dict[str, Callable[..., "FluentType"]], None] = None,
3939
use_isolating: bool = True,
4040
):
4141
self.locales = locales

0 commit comments

Comments
 (0)