Skip to content
Snippets Groups Projects
Commit abd8239b authored by vincent's avatar vincent
Browse files

To ease pandas interaction add function '<' to Satisfiability enum

parent a94aad55
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,9 @@ class Satisfiability(Enum):
def __str__(self) -> str:
return self.name.lower()
def __lt__(self, other):
return str(self) < str(other)
def __find_unlocking_script_timed(hex_script, return_dict, verbose, count_path):
m = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment