Fix return type of logging.config.BaseConfigurator.as_tuple (#12817)

This commit is contained in:
Brian Schubert
2024-10-15 14:54:48 -04:00
committed by GitHub
parent aedf65abe9
commit ab8e0e1ca1

View File

@@ -116,7 +116,7 @@ class BaseConfigurator: # undocumented
def cfg_convert(self, value: str) -> Any: ...
def convert(self, value: Any) -> Any: ...
def configure_custom(self, config: dict[str, Any]) -> Any: ...
def as_tuple(self, value: list[Any] | tuple[Any]) -> tuple[Any]: ...
def as_tuple(self, value: list[Any] | tuple[Any, ...]) -> tuple[Any, ...]: ...
class DictConfigurator(BaseConfigurator):
def configure(self) -> None: ... # undocumented