I couldn't classify all types as some canteens have dynamic dish types.
If we use str | DishType, the API becomes harder to use.
For now I've duck typed around this problem with the CUSTOM class.
Any suggestions on how to accomplish this in a better way?
fixes #253
I couldn't classify all types as some canteens have dynamic dish types. If we use
str | DishType
, the API becomes harder to use. For now I've duck typed around this problem with theCUSTOM
class. Any suggestions on how to accomplish this in a better way?