Skip to content

Commit

Permalink
Remove sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Feb 10, 2024
1 parent ba594ba commit 22e674d
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions jarvis_util/util/argparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,6 @@
from tabulate import tabulate


class MenuSequence:
def __init__(self, alias_toks):
self.alias = alias_toks
self.hash = 0
for tok in alias_toks:
self.hash += hash(tok)

def __hash__(self):
return self.hash

def __eq__(self, other):
return other.alias == self.alias


class ArgParse(ABC):
"""
A class for parsing command line arguments.
Expand Down

0 comments on commit 22e674d

Please sign in to comment.