From f4a7791d95d478ee796e3e13579d6c25153fc28c Mon Sep 17 00:00:00 2001 From: Aditya Bansal Date: Mon, 8 May 2017 01:06:34 +0530 Subject: [PATCH] pep8: Add compliance with rule E261 to test_template_parser.py. --- tools/tests/test_template_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tests/test_template_parser.py b/tools/tests/test_template_parser.py index 97ba657ed4..abdeaad935 100644 --- a/tools/tests/test_template_parser.py +++ b/tools/tests/test_template_parser.py @@ -28,7 +28,7 @@ class ParserTest(unittest.TestCase): def _assert_validate_error(self, error, fn=None, text=None, check_indent=True): # type: (str, Optional[str], Optional[str], bool) -> None - with self.assertRaisesRegex(TemplateParserException, error): # type: ignore # See https://github.com/python/typeshed/issues/372 + with self.assertRaisesRegex(TemplateParserException, error): # type: ignore # See https://github.com/python/typeshed/issues/372 validate(fn=fn, text=text, check_indent=check_indent) def test_is_django_block_tag(self):