Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyAttributeOutsideInitInspection
/
privateMethod.py
blob: 53034260511bc073c539ce865462b47dde4dfff9 [
file
] [
log
] [
blame
]
class
MyClass
(
object
):
def
__init__
(
self
):
self
.
_resetData
()
self
.
_val
=
[]
def
_resetData
(
self
):
self
.
_val
=
[]
# This should not be receiving a warning. The function gets called in __init__.