summaryrefslogtreecommitdiff
path: root/astroid/tests/unittest_inference.py
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-17 10:27:15 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-17 10:27:15 +0300
commitc16be8e421f4080b8f8fa26882aaaabb52220fa4 (patch)
tree10faf7fb11de46bf361963cf09a4f071e3980eb5 /astroid/tests/unittest_inference.py
parentb250b787791e10f87e252198fea835fc861ded14 (diff)
downloadastroid-c16be8e421f4080b8f8fa26882aaaabb52220fa4.tar.gz
Fix a couple of pylint warnings.
Diffstat (limited to 'astroid/tests/unittest_inference.py')
-rw-r--r--astroid/tests/unittest_inference.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/astroid/tests/unittest_inference.py b/astroid/tests/unittest_inference.py
index a1fe387..e34aa53 100644
--- a/astroid/tests/unittest_inference.py
+++ b/astroid/tests/unittest_inference.py
@@ -2338,7 +2338,7 @@ class TestCallable(unittest.TestCase):
('''
class C1:
def meth(self): pass
- callable(C1) #@''', True),
+ callable(C1) #@''', True),
]
for code, expected_value in expected:
node = test_utils.extract_node(code)
@@ -2398,7 +2398,7 @@ class TestCallable(unittest.TestCase):
for node in ast_nodes:
inferred = next(node.infer())
self.assertFalse(inferred.value)
-
+
if __name__ == '__main__':
unittest.main()