Skip to content

Commit

Permalink
ADD Coffee category
Browse files Browse the repository at this point in the history
  • Loading branch information
rubysdeadname committed May 26, 2021
1 parent c2b3a6d commit 6e7a099
Show file tree
Hide file tree
Showing 3 changed files with 22 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 @@ -11,6 +11,7 @@
from .cheese import Cheese
from .city import City
from .clothing import Clothing
from .coffee import Coffee
from .color import Color
from .condiment import Condiment
from .constellation import Constellation
Expand Down
20 changes: 20 additions & 0 deletions qual_id/categories/coffee.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from .category import Category


class Coffee(Category):
_name = "coffee"
_values = [
"affogato",
"americano",
"capuccino",
"cortado",
"doppio",
"espresso",
"frappe",
"frappucino",
"lungo",
"macchiato",
"mocha",
"piccolo",
"ristretto",
]
1 change: 1 addition & 0 deletions qual_id/groups/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class All(Group):
Cheese,
City,
Clothing,
Coffee,
Color,
Condiment,
Constellation,
Expand Down

0 comments on commit 6e7a099

Please sign in to comment.