Skip to content

Commit 30c70e9

Browse files
committed
Removed exemplar import and re-orders sets file import to be near top.
1 parent a7659c0 commit 30c70e9

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

exercises/concept/cater-waiter/sets_test.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
import unittest
22
import pytest
3+
4+
from sets import (clean_ingredients,
5+
check_drinks,
6+
categorize_dish,
7+
tag_special_ingredients,
8+
compile_ingredients,
9+
separate_appetizers,
10+
singleton_ingredients)
11+
12+
313
from sets_categories_data import (VEGAN,
414
VEGETARIAN,
5-
KETO,
6-
PALEO,
15+
KETO, PALEO,
716
OMNIVORE,
817
ALCOHOLS,
918
SPECIAL_INGREDIENTS,
@@ -27,15 +36,6 @@
2736
singletons)
2837

2938

30-
from exemplar import (clean_ingredients,
31-
check_drinks,
32-
categorize_dish,
33-
tag_special_ingredients,
34-
compile_ingredients,
35-
separate_appetizers,
36-
singleton_ingredients,)
37-
38-
3939
class SetsTest(unittest.TestCase):
4040

4141
@pytest.mark.task(taskno=1)

0 commit comments

Comments
 (0)