.. _kwarg-superseded-by-positional-arg: kwarg-superseded-by-positional-arg / W1117 ========================================== **Message emitted:** ``%r will be included in %r since a positional-only parameter with this name already exists`` **Description:** *Emitted when a function is called with a keyword argument that has the same name as a positional-only parameter and the function contains a keyword variadic parameter dict.* **Problematic code:** .. literalinclude:: /data/messages/k/kwarg-superseded-by-positional-arg/bad.py :language: python **Correct code:** .. literalinclude:: /data/messages/k/kwarg-superseded-by-positional-arg/good.py :language: python Created by the `typecheck `__ checker.