pylint-super-not-called

A Pylint plugin to ensure overloaded methods are calling the parent method with super


License
MIT
Install
pip install pylint-super-not-called==0.10.0

Documentation

Pylint super-not-called plugin

A Pylint plugin that enforces methods to call the parent method with super.

Installation

# Install the package into your virtual environment:
pip install pylint_super_not_called

# Launch Pylint with the load-plugin option
pylint --load-plugin pylint_super_not_called .

Use pylintrc to automatically load the plugin if needed

Configuration

  • super-enforced-methods: a list of methods to check (default: 'setUp')