From 151b1c4086c20763030b1cd61f90788489d0efdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Mon, 24 Oct 2022 14:36:03 +0200 Subject: [PATCH] style: Fix indentation test file missing whitespace Commit 764586d "indentation: Fix indent-sequences in nested collections" introduced 2 style-related problems: tests/rules/test_indentation.py:1394:45: E231 missing whitespace after ',' tests/rules/test_indentation.py:1402:45: E231 missing whitespace after ',' Let's fix them. --- tests/rules/test_indentation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rules/test_indentation.py b/tests/rules/test_indentation.py index fbfe500..4dcb1a1 100644 --- a/tests/rules/test_indentation.py +++ b/tests/rules/test_indentation.py @@ -1391,7 +1391,7 @@ class IndentationTestCase(RuleTestCase): ' - elem\n' '- item:\n' ' - elem\n' - '...\n', conf, problem=(5,5)) + '...\n', conf, problem=(5, 5)) conf = ('indentation: {spaces: consistent,\n' ' indent-sequences: consistent}') self.check('---\n' @@ -1399,7 +1399,7 @@ class IndentationTestCase(RuleTestCase): ' - elem\n' '- item:\n' ' - elem\n' - '...\n', conf, problem=(5,5)) + '...\n', conf, problem=(5, 5)) conf = ('indentation: {spaces: consistent,\n' ' indent-sequences: whatever}') self.check('---\n'