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