Skip to content

Commit 05694c6

Browse files
author
codegen-bot
committed
Make changetype an IntEnum
1 parent 5ca3137 commit 05694c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/codegen/sdk/codebase/diff_lite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from enum import Enum, auto
1+
from enum import IntEnum, auto
22
from os import PathLike
33
from pathlib import Path
44
from typing import NamedTuple, Self
@@ -7,7 +7,7 @@
77
from watchfiles import Change
88

99

10-
class ChangeType(Enum):
10+
class ChangeType(IntEnum):
1111
Modified = auto()
1212
Removed = auto()
1313
Renamed = auto()

0 commit comments

Comments
 (0)