From c0b623bd6dfd32421a9afc388f9d8a56a353bba9 Mon Sep 17 00:00:00 2001 From: John Doty Date: Sat, 24 Aug 2024 08:36:20 -0700 Subject: [PATCH] Remove unused imports --- tests/test_grammar.py | 2 -- tests/test_lexer.py | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/test_grammar.py b/tests/test_grammar.py index 26e5057..ee28ed6 100644 --- a/tests/test_grammar.py +++ b/tests/test_grammar.py @@ -1,5 +1,3 @@ -import typing - import pytest import parser diff --git a/tests/test_lexer.py b/tests/test_lexer.py index fe442d8..79d8d98 100644 --- a/tests/test_lexer.py +++ b/tests/test_lexer.py @@ -1,9 +1,8 @@ import collections from hypothesis import assume, example, given -from hypothesis.strategies import integers, lists, tuples +from hypothesis.strategies import integers, lists -import pytest from parser import ( EdgeList,