Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyAttributeOutsideInitInspection
/
truePositive.py
blob: 87fc96cfef11f2bfb06444dcaca84c99e29c9a18 [
file
] [
log
] [
blame
]
__author__
=
'ktisha'
class
A
:
def
__init__
(
self
):
self
.
a
=
1
def
foo
(
self
):
<
weak_warning descr
=
"Instance attribute b defined outside __init__"
>
self
.
b
</
weak_warning
>=
1