Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
hadarshavit committed Dec 19, 2024
1 parent be42c4b commit 8d78e2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sparkle/types/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@


class SolverStatus(str, Enum):
"""Possible return states for solver runs."""
def __str__(self):
return str(self.value)

"""Possible return states for solver runs."""
SUCCESS = "SUCCESS" # Positive status
UNKNOWN = "UNKNOWN" # Semi positive status
SAT = "SAT" # SAT specific positive status
Expand All @@ -19,3 +16,6 @@ def __str__(self):
WRONG = "WRONG"
ERROR = "ERROR"
KILLED = "KILLED"

def __str__(self):
return str(self.value)

0 comments on commit 8d78e2b

Please sign in to comment.