Python: Remove impossible flow for **kwargs params

This commit is contained in:
Rasmus Wriedt Larsen
2022-09-09 13:53:01 +02:00
parent eb600f07b7
commit 503ad544e9
2 changed files with 25 additions and 1 deletions

View File

@@ -198,5 +198,5 @@ def test_mixed():
args = {"b": arg2, "c": "safe"} # $ arg2 func=mixed
mixed(a=arg1, **args) # $ arg1
args = {"a": arg1, "b": arg2, "c": "safe"} # $ bad1="arg1" arg2 func=mixed
args = {"a": arg1, "b": arg2, "c": "safe"} # $ arg2 func=mixed MISSING: arg1
mixed(**args)