Fix OptionInfo typing

Warning: This effectively disables type checking for `shared.opts`
This commit is contained in:
awsr
2026-01-13 04:07:51 -08:00
parent 08c871e8d1
commit 6cec9828e8
+1 -1
View File
@@ -21,7 +21,7 @@ def options_section(section_identifier: tuple[str, str], options_dict: dict[str,
class OptionInfo:
def __init__(
self,
default: Any | None = None,
default: Any = None,
label="",
component: type[Component] | type[DropdownEditable] | None = None,
component_args: dict | Callable[..., dict] | None = None,