Pybites Logo

Sortable dataclasses and enums

Intermediate +3 pts

Write an enum called BiteLevel and a dataclass called Bite following the instructions below.

Make sure that the dataclass and enum objects can be sorted. For that look at the arguments the @dataclass decorator and type of enum respectively.

Good luck and keep calm and code in Python!