We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf47df0 commit 3e06da6Copy full SHA for 3e06da6
cmake_file_api/kinds/cache/v2.py
@@ -1,5 +1,5 @@
1
import dataclasses
2
-from enum import StrEnum
+from enum import Enum
3
import json
4
from pathlib import Path
5
from typing import Any
@@ -8,7 +8,7 @@
8
from cmake_file_api.kinds.kind import ObjectKind
9
10
11
-class CacheEntryType(StrEnum):
+class CacheEntryType(Enum):
12
TYPE_BOOL = "BOOL"
13
TYPE_FILEPATH = "FILEPATH"
14
TYPE_PATH = "PATH"
0 commit comments