Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
AddCallSuperAnnotations.py
blob: b50ae1b4fb725b4df29f5863cfd3d5a5422ce722 [
file
] [
log
] [
blame
]
class
Example1
:
def
__init__
(
self
,
field1
:
str
):
self
.
field1
=
field1
class
Example2
(
Example1
):
def
<
warning descr
=
"Call to __init__ of super class is missed"
>
__i
<
caret
>
nit__
</
warning
>(
self
):
## Missed call to __init__ of super class
pass