Removed exemplar import and re-orders sets file import to be near top.

This commit is contained in:
BethanyG
2021-08-25 23:06:01 -07:00
committed by BethanyG
parent a7659c0e6f
commit 30c70e921a

View File

@@ -1,9 +1,18 @@
import unittest
import pytest
from sets import (clean_ingredients,
check_drinks,
categorize_dish,
tag_special_ingredients,
compile_ingredients,
separate_appetizers,
singleton_ingredients)
from sets_categories_data import (VEGAN,
VEGETARIAN,
KETO,
PALEO,
KETO, PALEO,
OMNIVORE,
ALCOHOLS,
SPECIAL_INGREDIENTS,
@@ -27,15 +36,6 @@ from sets_test_data import (recipes_with_duplicates,
singletons)
from exemplar import (clean_ingredients,
check_drinks,
categorize_dish,
tag_special_ingredients,
compile_ingredients,
separate_appetizers,
singleton_ingredients,)
class SetsTest(unittest.TestCase):
@pytest.mark.task(taskno=1)