.. _too-many-function-args:

too-many-function-args / E1121
==============================

**Message emitted:**

Too many positional arguments for %s call

**Description:**

*Used when a function call passes too many positional arguments.*

**Problematic code:**

.. literalinclude:: /data/messages/t/too-many-function-args/bad.py
   :language: python

**Correct code:**

.. literalinclude:: /data/messages/t/too-many-function-args/good.py
   :language: python



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