mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-02 11:22:41 +01:00
framework/configuration: Fix missing return statements for Jobspec properties
This commit is contained in:
@@ -928,12 +928,12 @@ class JobSpec(Configuration):
|
|||||||
@property
|
@property
|
||||||
def section_id(self):
|
def section_id(self):
|
||||||
if self.id is not None:
|
if self.id is not None:
|
||||||
self.id.rsplit('-', 1)[0]
|
return self.id.rsplit('-', 1)[0]
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def workload_id(self):
|
def workload_id(self):
|
||||||
if self.id is not None:
|
if self.id is not None:
|
||||||
self.id.rsplit('-', 1)[-1]
|
return self.id.rsplit('-', 1)[-1]
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(JobSpec, self).__init__()
|
super(JobSpec, self).__init__()
|
||||||
|
Reference in New Issue
Block a user