mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
PY-9302 Class has no __init__ method: false positive for child class without one
10 lines
192 B
Python
10 lines
192 B
Python
__author__ = 'ktisha'
|
|
class <weak_warning descr="Class has no __init__ method">A</weak_warning>:
|
|
def foo(self):
|
|
self.b = 1
|
|
|
|
class B(A):
|
|
def __init__(self):
|
|
self.b = 2
|
|
|