blob: 435a4c29d374a7416fb453e8ad00ae68ef10a260 [file] [log] [blame]
__author__ = 'ktisha'
class Base(object):
def __init__(self):
self.my = 1
class Child(Base): # <- Child class here should not be highlighted since
# it has init mehtod of Base class.
pass