mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 14:01:55 +08:00
Fix return type of logging.config.BaseConfigurator.as_tuple (#12817)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user