.. _super-without-brackets:

super-without-brackets / W0245
==============================

**Message emitted:**

Super call without brackets

**Description:**

*Used when a call to super does not have brackets and thus is not an actual call and does not work as expected.*

**Problematic code:**

.. literalinclude:: /data/messages/s/super-without-brackets/bad.py
   :language: python

**Correct code:**

.. literalinclude:: /data/messages/s/super-without-brackets/good.py
   :language: python



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