The error message generated for this example is confusing, since only `c` is missing: ```py def f(a, b, c, d=None) -> None: pass f(1, 2, d=3) # Missing positional arguments "a", "b", "c" in call to "f" ```