We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30cf42c commit de6b5edCopy full SHA for de6b5ed
protovalidate/internal/extra_func.py
@@ -238,7 +238,9 @@ def unique(val: celtypes.Value) -> celpy.Result:
238
239
240
def make_extra_funcs(locale: str) -> dict[str, celpy.CELFunction]:
241
- string_fmt = string_format.StringFormat(locale)
+ # TODO(#257): Fix types and add tests for StringFormat.
242
+ # For now, ignoring the type.
243
+ string_fmt = string_format.StringFormat(locale) # type: ignore
244
return {
245
# Missing standard functions
246
"format": string_fmt.format,
0 commit comments