We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7659c0 commit 30c70e9Copy full SHA for 30c70e9
exercises/concept/cater-waiter/sets_test.py
@@ -1,9 +1,18 @@
1
import unittest
2
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
13
from sets_categories_data import (VEGAN,
14
VEGETARIAN,
- KETO,
- PALEO,
15
+ KETO, PALEO,
16
OMNIVORE,
17
ALCOHOLS,
18
SPECIAL_INGREDIENTS,
@@ -27,15 +36,6 @@
27
36
singletons)
28
37
29
38
30
-from exemplar import (clean_ingredients,
31
- check_drinks,
32
- categorize_dish,
33
- tag_special_ingredients,
34
- compile_ingredients,
35
- separate_appetizers,
- singleton_ingredients,)
-
39
class SetsTest(unittest.TestCase):
40
41
@pytest.mark.task(taskno=1)
0 commit comments