summaryrefslogtreecommitdiff
path: root/tests/test_check_parallel.py
diff options
context:
space:
mode:
authorFrank Harrison <frank@doublethefish.com>2020-08-06 10:00:03 +0100
committerBryce Guinta <bryce.guinta@protonmail.com>2020-10-19 12:26:17 -0700
commitc7c0db26ac9ca19ed2f79f0c8ac0542c62f281cf (patch)
treededc5930d1521f299c3d570a0fc69853d044bd75 /tests/test_check_parallel.py
parenta9c39bcfe228e714a61a0ac05d82168f13bbf6b2 (diff)
downloadpylint-git-c7c0db26ac9ca19ed2f79f0c8ac0542c62f281cf.tar.gz
review fixes| Removes clarifying (IMO) variable
Diffstat (limited to 'tests/test_check_parallel.py')
-rw-r--r--tests/test_check_parallel.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_check_parallel.py b/tests/test_check_parallel.py
index a0f0a40a1..698dcdfd8 100644
--- a/tests/test_check_parallel.py
+++ b/tests/test_check_parallel.py
@@ -35,8 +35,7 @@ def _gen_file_data(idx=0):
def _gen_file_datas(count=1):
- file_infos = [_gen_file_data(idx) for idx in range(count)]
- return file_infos
+ return [_gen_file_data(idx) for idx in range(count)]
class SequentialTestChecker(BaseChecker):