Files
openide/python/testData/inspections/PyUnresolvedReferencesInspection/ivarInDocstring.py
T

10 lines
166 B
Python

class SomeClass(object):
""" Awesome class
@ivar someVar: great stuff
@type someVar: string
"""
def __init__(self):
self.someVar = None