.. _arguments-out-of-order:

arguments-out-of-order / W1114
==============================

**Message emitted:**

Positional arguments appear to be out of order

**Description:**

*Emitted  when the caller's argument names fully match the parameter names in the function signature but do not have the same order.*

**Problematic code:**

.. literalinclude:: /data/messages/a/arguments-out-of-order/bad.py
   :language: python

**Correct code:**

.. literalinclude:: /data/messages/a/arguments-out-of-order/good.py
   :language: python



Created by the `typecheck <https://github.com/PyCQA/pylint/blob/main/pylint/checkers/typecheck.py>`__ checker.