.. _not-callable:

not-callable / E1102
====================

**Message emitted:**

%s is not callable

**Description:**

*Used when an object being called has been inferred to a non callable object.*

**Problematic code:**

.. literalinclude:: /data/messages/n/not-callable/bad.py
   :language: python

**Correct code:**

.. literalinclude:: /data/messages/n/not-callable/good.py
   :language: python



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