Skip to content

Commit

Permalink
Remove methods that are implemented identically in the parent class.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Dec 10, 2020
1 parent 1b783ab commit 88d64a0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions flow/scheduling/torque.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,6 @@ def __init__(self, node):
def _id(self):
return self.node.find("Job_Id").text

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

def name(self):
"""Return the name of the cluster job."""
return self.node.find("Job_Name").text

def status(self):
"""Return the status of the cluster job."""
job_state = self.node.find("job_state").text
Expand Down

0 comments on commit 88d64a0

Please sign in to comment.