Classic style class usage
Reports classic style classes usage. This inspection applies only to Python 2.
Example:
class A:
pass
With quick-fixes provided by the IDE, this code fragment changes to:
class A(object):
def __init__(self):
pass
Inspection Details | |
---|---|
Available in: | DataSpell 2023.3, PyCharm 2023.3 |
Plugin: | Python Community Edition, 233.SNAPSHOT |
Last modified: 13 July 2023