summaryrefslogtreecommitdiffstats
path: root/tests/test_parser.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-14 19:07:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-14 19:07:17 +0000
commit3eff9a2d581311905f71a98a67b6391a561d5517 (patch)
tree0d87f151ae469442bdfe8284917285f1d000eff0 /tests/test_parser.py
parentAdding upstream version 1.33.0. (diff)
downloadyamllint-3eff9a2d581311905f71a98a67b6391a561d5517.tar.xz
yamllint-3eff9a2d581311905f71a98a67b6391a561d5517.zip
Adding upstream version 1.35.1.upstream/1.35.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r--tests/test_parser.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py
index dbeb36b..c2b598a 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -17,9 +17,14 @@ import unittest
import yaml
-from yamllint.parser import (line_generator, token_or_comment_generator,
- token_or_comment_or_line_generator,
- Line, Token, Comment)
+from yamllint.parser import (
+ Comment,
+ Line,
+ Token,
+ line_generator,
+ token_or_comment_generator,
+ token_or_comment_or_line_generator,
+)
class ParserTestCase(unittest.TestCase):