From 88d64a0694d58e2a6dbfd3d1d1cc378c320685c6 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 8 Dec 2020 22:16:25 -0600 Subject: [PATCH] Remove methods that are implemented identically in the parent class. --- flow/scheduling/torque.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/flow/scheduling/torque.py b/flow/scheduling/torque.py index d32ac9e67..d49bdab21 100644 --- a/flow/scheduling/torque.py +++ b/flow/scheduling/torque.py @@ -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