We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71aaf59 commit 076d1a5Copy full SHA for 076d1a5
1 file changed
conformance/tests/callables_kwargs.py
@@ -48,7 +48,7 @@ def func3() -> None:
48
49
td2 = TD2(v1=2, v3="4")
50
func1(**td2) # OK
51
- func1(v1=1, v2="", v3="5", v4=5) # E: v4 is not in TD2
+ func1(v1=1, v2="", v3="5", v4=5) # E?: v4 is not in TD2, but could be in a subtype
52
func1(1, "", "5") # E: args not passed by position
53
54
# > Passing a dictionary of type dict[str, object] as a **kwargs argument
0 commit comments