Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
ivarInDocstring.py
blob: 1fec85f8b63bf04f8ac136e37dd90ff4b63f583c [
file
] [
log
] [
blame
]
Tor Norbye
814f829
2014-03-06 17:27:18 -0800
[
diff
] [
blame
]
1
2
class
SomeClass
(
object
):
3
""" Awesome class
4
5
@ivar someVar: great stuff
6
@type someVar: string
7
"""
8
9
def
__init__
(
self
):
10
self
.
someVar
=
None