mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Correct 2 typing comments in inspect module (#2110)
This commit is contained in:
committed by
Jelle Zijlstra
parent
0a30d22f0d
commit
86f9472bc9
@@ -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+
|
||||
|
||||
Reference in New Issue
Block a user