Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyClassHasNoInitInspection
/
initInParentClass.py
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