diff --git a/stdlib/3/inspect.pyi b/stdlib/3/inspect.pyi index d76623174..be72b6457 100644 --- a/stdlib/3/inspect.pyi +++ b/stdlib/3/inspect.pyi @@ -153,8 +153,8 @@ class Parameter: class BoundArguments: arguments = ... # type: MutableMapping[str, Any] - args = ... # Tuple[Any, ...] - kwargs = ... # Dict[str, Any] + args = ... # type: Tuple[Any, ...] + kwargs = ... # type: Dict[str, Any] signature = ... # type: Signature # Python 3.5+