summaryrefslogtreecommitdiff
path: root/pylint/test/functional/async_functions.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-04-02 09:51:15 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-04-02 10:07:19 +0200
commit9457f9ee8a4f197b111dad50e66778e80250683e (patch)
tree0cc0c707fbddedc16ac953858a47359181b225c6 /pylint/test/functional/async_functions.py
parent955acfec0e51c7705960693ed077c0696dd91581 (diff)
downloadpylint-git-9457f9ee8a4f197b111dad50e66778e80250683e.tar.gz
Fix lint errors caused by the new checker change
Diffstat (limited to 'pylint/test/functional/async_functions.py')
-rw-r--r--pylint/test/functional/async_functions.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pylint/test/functional/async_functions.py b/pylint/test/functional/async_functions.py
index 486c9ba45..8375b8988 100644
--- a/pylint/test/functional/async_functions.py
+++ b/pylint/test/functional/async_functions.py
@@ -27,15 +27,15 @@ async def complex_function(this, function, has, more, arguments, than,
one, _, should, have):
if 1:
return this
- elif 1:
+ if 1:
return function
- elif 1:
+ if 1:
return has
- elif 1:
+ if 1:
return more
- elif 1:
+ if 1:
return arguments
- elif 1:
+ if 1:
return than
try:
return one
@@ -47,9 +47,9 @@ async def complex_function(this, function, has, more, arguments, than,
pass
if 1:
return have
- elif 2:
+ if 2:
return function
- elif 3:
+ if 3:
pass