Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
quickFixes
/
AddMethodQuickFixTest
/
addMethodFromMethod.py
blob: 26f30bc3ada11554f5b902f796f620e36c3080d3 [
file
] [
log
] [
blame
]
class
A
:
def
__init__
(
self
):
self
.
x
=
1
def
foo
(
self
,
a
):
self
.<
caret
><
warning descr
=
"Unresolved attribute reference 'y' for class 'A'"
>
y
</
warning
>(
1
,
a
)
# Some comment
class
B
:
pass