Correct 2 typing comments in inspect module (#2110)

This commit is contained in:
Phillip Schanely
2018-05-12 01:27:29 -04:00
committed by Jelle Zijlstra
parent 0a30d22f0d
commit 86f9472bc9

View File

@@ -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+