summaryrefslogtreecommitdiff
path: root/pylint/test/functional/redefined_variable_type.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/redefined_variable_type.py')
-rw-r--r--pylint/test/functional/redefined_variable_type.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/pylint/test/functional/redefined_variable_type.py b/pylint/test/functional/redefined_variable_type.py
index 9851702..2fdf4ad 100644
--- a/pylint/test/functional/redefined_variable_type.py
+++ b/pylint/test/functional/redefined_variable_type.py
@@ -4,11 +4,6 @@
_OK = True
-def my_func():
- var = 'foo'
- var = 'bar'
- var = var.split() # [redefined-variable-type]
-
class MyClass(object):
def __init__(self):
self.var = True