From a3e983f78dc4cbcf6f75f78fa2b3c57e09cd1b2b Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 5 Feb 2021 01:38:33 +0100 Subject: Added a few flake8 plugin --- src/test/captured.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/test/captured.py') diff --git a/src/test/captured.py b/src/test/captured.py index 4cf9184..f7dae3e 100644 --- a/src/test/captured.py +++ b/src/test/captured.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/09/11 12:16:25 by charles #+# #+# # -# Updated: 2021/01/31 04:23:03 by charles ### ########.fr # +# Updated: 2021/02/04 15:52:19 by charles ### ########.fr # # # # ############################################################################ # @@ -48,7 +48,7 @@ class Captured: return self.is_timeout == other.is_timeout return (self.output == other.output and self.status == other.status - and all([x == y for x, y in zip(self.files_content, other.files_content)])) + and all(x == y for x, y in zip(self.files_content, other.files_content))) @staticmethod def timeout(): -- cgit