ci: fix mypy complains

This commit is contained in:
Alexandre Aubin 2024-08-14 20:26:40 +02:00
parent 2976e7bf60
commit 4ee8d4e8ca

View file

@ -612,7 +612,7 @@ class BaseInputOption(BaseOption):
redact: bool = False
optional: bool = False # FIXME keep required as default?
default: Any = None
_annotation = Any
_annotation: Any = Any
_none_as_empty_str: bool = True
@validator("default", pre=True)