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