Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
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