diff --git a/tests/parse/test_bool.py b/tests/parse/test_bool.py index 073e0ee..e1376e8 100644 --- a/tests/parse/test_bool.py +++ b/tests/parse/test_bool.py @@ -2,21 +2,11 @@ # Copyright 2022 Jookia from hypothesis import assume, given -from hypothesis.strategies import ( - booleans, - composite, -) +from hypothesis.strategies import booleans, composite -from src.parse import ( - ParseError, - ParseErrorException, - Parser, -) +from src.parse import ParseError, ParseErrorException, Parser from src.syntax import Syntax, SyntaxStream, SyntaxType -from tests.test_syntax import ( - draw_token_bool, - draw_syntax_random, -) +from tests.test_syntax import draw_token_bool, draw_syntax_random # Draws tokens to make a valid boolean diff --git a/tests/parse/test_clear_notes.py b/tests/parse/test_clear_notes.py index 7d2e0ec..8d13367 100644 --- a/tests/parse/test_clear_notes.py +++ b/tests/parse/test_clear_notes.py @@ -2,10 +2,7 @@ # Copyright 2022 Jookia from hypothesis import assume, given -from hypothesis.strategies import ( - composite, - lists, -) +from hypothesis.strategies import composite, lists from src.parse import ( NoteSkipper, @@ -13,10 +10,7 @@ ParseErrorException, ) from src.syntax import SyntaxStream -from tests.test_syntax import ( - draw_token_by_value, - draw_syntax_token, -) +from tests.test_syntax import draw_token_by_value, draw_syntax_token # Dummy parse_note implementation for testing note clearing diff --git a/tests/parse/test_parse.py b/tests/parse/test_parse.py index 59edc6d..02fa3c2 100644 --- a/tests/parse/test_parse.py +++ b/tests/parse/test_parse.py @@ -17,10 +17,7 @@ parse, ) from src.syntax import SyntaxStream -from tests.test_syntax import ( - draw_token_classified, - draw_syntax_random, -) +from tests.test_syntax import draw_token_classified, draw_syntax_random # Inserts an element at a random place in a list