.. _unused-argument:

unused-argument / W0613
=======================

**Message emitted:**

``Unused argument %r``

**Description:**

*Used when a function or method argument is not used.*

**Problematic code:**

.. literalinclude:: /data/messages/u/unused-argument/bad.py
   :language: python

**Correct code:**

.. literalinclude:: /data/messages/u/unused-argument/good.py
   :language: python





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