Skip to content

Commit

Permalink
fix: Remove Test enum
Browse files Browse the repository at this point in the history
  • Loading branch information
noahpistilli committed Jul 29, 2024
1 parent c407e44 commit 08d9e2c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,16 +499,16 @@ def category_list(request):
return {
"response": {
"Pizza": formulate_restaurant(CategoryTypes.Pizza),
# "Bento": formulate_restaurant(CategoryTypes.Bento_Box),
# "Sushi": formulate_restaurant(CategoryTypes.Sushi),
# "Fish": formulate_restaurant(CategoryTypes.Fish),
# "Seafood": formulate_restaurant(CategoryTypes.Seafood),
# "American": formulate_restaurant(CategoryTypes.Western),
# "Fast": formulate_restaurant(CategoryTypes.Fast_Food),
# "Indian": formulate_restaurant(CategoryTypes.Curry),
# "Party": formulate_restaurant(CategoryTypes.Party_Food),
"Drinks": formulate_restaurant(CategoryTypes.Others),
"Other": formulate_restaurant(CategoryTypes.Test),
"Bento": formulate_restaurant(CategoryTypes.Bento_Box),
"Sushi": formulate_restaurant(CategoryTypes.Sushi),
"Fish": formulate_restaurant(CategoryTypes.Fish),
"Seafood": formulate_restaurant(CategoryTypes.Seafood),
"American": formulate_restaurant(CategoryTypes.Western),
"Fast": formulate_restaurant(CategoryTypes.Fast_Food),
"Indian": formulate_restaurant(CategoryTypes.Curry),
"Party": formulate_restaurant(CategoryTypes.Party_Food),
"Drinks": formulate_restaurant(CategoryTypes.Drinks),
"Other": formulate_restaurant(CategoryTypes.Others),
"Placeholder": formulate_restaurant(CategoryTypes.Others),
}
}
Expand Down

0 comments on commit 08d9e2c

Please sign in to comment.