Skip to content

Commit

Permalink
Fix return type of logging.config.BaseConfigurator.as_tuple (#12817)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianschubert authored Oct 15, 2024
1 parent aedf65a commit ab8e0e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/logging/config.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ab8e0e1

Please sign in to comment.