Inspectopedia Help

Single quoted docstring

Reports docstrings that do not adhere to the triple double-quoted string format.

Example:

def calc(self, balance=0): 'param: balance' self.balance = balance

When the quick-fix is applied, the code changes to:

def calc(self, balance=0): """param: balance""" self.balance = balance

Inspection Details

By default bundled with:

DataSpell 2024.1, IntelliJ IDEA 2024.1, PyCharm 2024.1, Qodana for JVM 2024.1,

Can be installed with plugin:

Python Community Edition, 241.SNAPSHOT

Last modified: 29 April 2024