We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3331021 commit f292687Copy full SHA for f292687
pedantic/type_checking_logic/check_generic_classes.py
@@ -28,7 +28,7 @@ def check_instance_of_generic_class_and_get_type_vars(instance: Any) -> Dict[Typ
28
>>> e = B[int]()
29
Traceback (most recent call last):
30
...
31
- TypeError: Too few ...; actual 1, expected 2
+ TypeError: Too few ...; actual 1, expect... 2
32
>>> f = B[int, float]()
33
>>> check_instance_of_generic_class_and_get_type_vars(f)
34
{~T: <class 'int'>, ~S: <class 'float'>}
0 commit comments