Skip to content

Commit

Permalink
Merge pull request #76 from gabrielbarker/add-taste-category
Browse files Browse the repository at this point in the history
Add `Taste` category
  • Loading branch information
rubysdeadname authored Oct 22, 2021
2 parents 3f31e09 + 2b086cc commit 3ceeb2d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions qual_id/categories/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
from .spice import Spice
from .sport import Sport
from .state import State
from .taste import Taste
from .tea import Tea
from .time import Time
from .tool import Tool
Expand Down
21 changes: 21 additions & 0 deletions qual_id/categories/taste.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from .category import Category


class Taste(Category):
_name = "taste"
_values = [
"acidic",
"acrid",
"bitter",
"buttery",
"citrusy",
"fruity",
"salty",
"smoky",
"sour",
"spicy",
"sweet",
"tangy",
"umami",
"zesty",
]
1 change: 1 addition & 0 deletions qual_id/groups/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ class All(Group):
Spice,
Sport,
State,
Taste,
Tea,
Time,
Tool,
Expand Down

0 comments on commit 3ceeb2d

Please sign in to comment.