Core: change HINT_FOUND to 40 and HINT_UNSPECIFIED to 0 (#4620)

This commit is contained in:
Fabian Dill
2025-02-10 19:19:00 +01:00
committed by GitHub
parent 18bcaa85a2
commit a298be9c41
3 changed files with 16 additions and 7 deletions

View File

@@ -12,11 +12,11 @@ from Utils import ByValue, Version
class HintStatus(ByValue, enum.IntEnum):
HINT_FOUND = 0
HINT_UNSPECIFIED = 1
HINT_UNSPECIFIED = 0
HINT_NO_PRIORITY = 10
HINT_AVOID = 20
HINT_PRIORITY = 30
HINT_FOUND = 40
class JSONMessagePart(typing.TypedDict, total=False):