Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyClassHasNoInitInspection
/
parentClass.py
blob: 4fca91af54eb963d49dee5c1fe2a073ee51a33b0 [
file
] [
log
] [
blame
]
__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