mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
8 lines
234 B
Python
8 lines
234 B
Python
class Example1:
|
|
def __init__(self):
|
|
self.field1 = 1
|
|
|
|
|
|
class Example2(Example1):
|
|
def <warning descr="Call to __init__ of super class is missed">__init<caret>__</warning>(self): # Some valuable comment here
|
|
pass |