Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
AddCallSuperAnnotations_after.py
blob: 4bfd08c375e3dc886bf3bc75aa5414f1d03d5429 [
file
] [
log
] [
blame
]
class
Example1
:
def
__init__
(
self
,
field1
:
str
):
self
.
field1
=
field1
class
Example2
(
Example1
):
def
__init__
(
self
,
field1
):
super
().
__init__
(
field1
)