Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fluent.runtime/fluent/runtime/builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
DATETIME = fluent_date


BUILTINS: Dict[str, Callable[[Any], FluentType]] = {
BUILTINS: Dict[str, Callable[..., FluentType]] = {
"NUMBER": NUMBER,
"DATETIME": DATETIME,
}
2 changes: 1 addition & 1 deletion fluent.runtime/fluent/runtime/bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class FluentBundle:
def __init__(
self,
locales: List[str],
functions: Union[Dict[str, Callable[[Any], "FluentType"]], None] = None,
functions: Union[Dict[str, Callable[..., "FluentType"]], None] = None,
use_isolating: bool = True,
):
self.locales = locales
Expand Down
Loading