You've already forked HeurAMS-Classic
16 lines
214 B
Python
16 lines
214 B
Python
from enum import IntEnum
|
|
|
|
|
|
class Rating(IntEnum):
|
|
"""
|
|
Enum representing the four possible ratings when reviewing a card.
|
|
"""
|
|
|
|
Again = 1
|
|
Hard = 2
|
|
Good = 3
|
|
Easy = 4
|
|
|
|
|
|
__all__ = ["Rating"]
|