Skip to content

Commit 3ceeb2d

Browse files
Merge pull request #76 from gabrielbarker/add-taste-category
Add `Taste` category
2 parents 3f31e09 + 2b086cc commit 3ceeb2d

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

qual_id/categories/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
from .spice import Spice
5959
from .sport import Sport
6060
from .state import State
61+
from .taste import Taste
6162
from .tea import Tea
6263
from .time import Time
6364
from .tool import Tool

qual_id/categories/taste.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from .category import Category
2+
3+
4+
class Taste(Category):
5+
_name = "taste"
6+
_values = [
7+
"acidic",
8+
"acrid",
9+
"bitter",
10+
"buttery",
11+
"citrusy",
12+
"fruity",
13+
"salty",
14+
"smoky",
15+
"sour",
16+
"spicy",
17+
"sweet",
18+
"tangy",
19+
"umami",
20+
"zesty",
21+
]

qual_id/groups/all.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ class All(Group):
6565
Spice,
6666
Sport,
6767
State,
68+
Taste,
6869
Tea,
6970
Time,
7071
Tool,

0 commit comments

Comments
 (0)