summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2012-02-23 09:21:11 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2012-02-23 09:21:11 +0100
commit7e1cf48f5e089d051405612e0add7e4c8abccae8 (patch)
tree859c73f39591b18be1708e67fb50e5abfd2a939e
parent281e4e1819447d31b366dfc3ace4e4bedd77aeb7 (diff)
downloadpylint-git-7e1cf48f5e089d051405612e0add7e4c8abccae8.tar.gz
d-t-w
-rw-r--r--test/input/func_newstyle_property.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/input/func_newstyle_property.py b/test/input/func_newstyle_property.py
index 2b8d60bfd..84a07fc35 100644
--- a/test/input/func_newstyle_property.py
+++ b/test/input/func_newstyle_property.py
@@ -10,11 +10,11 @@ def getter(self):
class OkOk(object):
"""correct usage"""
method = property(getter, doc='hop')
-
+
class HaNonNonNon:
"""bad usage"""
method = property(getter, doc='hop')
-
+
def __init__(self):
pass