diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:07:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:07:17 +0000 |
commit | 3eff9a2d581311905f71a98a67b6391a561d5517 (patch) | |
tree | 0d87f151ae469442bdfe8284917285f1d000eff0 /tests/test_parser.py | |
parent | Adding upstream version 1.33.0. (diff) | |
download | yamllint-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.py | 11 |
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): |