You've already forked HeurAMS-Classic
build: 修改依赖并引入外部库
This commit is contained in:
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user