diff --git a/test_avl.py b/test_avl.py index b28a3d9..6245118 100644 --- a/test_avl.py +++ b/test_avl.py @@ -1,11 +1,8 @@ from avl import AVLTree, _balance_factor import logging -import random from typing import List -import hypothesis -import hypothesis.strategies as st import pytest logger = logging.getLogger(__name__) diff --git a/test_properties.py b/test_properties.py index 20a75cb..0026387 100644 --- a/test_properties.py +++ b/test_properties.py @@ -4,7 +4,6 @@ from ravl import RAVLTree import logging import random -from typing import List import hypothesis import hypothesis.strategies as st diff --git a/test_ravl.py b/test_ravl.py index 3e02490..a4261b7 100644 --- a/test_ravl.py +++ b/test_ravl.py @@ -1,10 +1,7 @@ from ravl import RAVLTree -import hypothesis -import hypothesis.strategies as st import logging import pytest -import random logger = logging.getLogger(__name__)