0e60f66604
Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
11 lines
185 B
Python
11 lines
185 B
Python
from enum import Enum
|
|
|
|
|
|
class FileStatus(str, Enum):
|
|
ADDED = "added"
|
|
DELETED = "deleted"
|
|
MODIFIED = "modified"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|