aboutsummaryrefslogtreecommitdiffstats
path: root/opnfv_testapi/resources/scenario_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'opnfv_testapi/resources/scenario_models.py')
-rw-r--r--opnfv_testapi/resources/scenario_models.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/opnfv_testapi/resources/scenario_models.py b/opnfv_testapi/resources/scenario_models.py
index 467cff2..ca820cd 100644
--- a/opnfv_testapi/resources/scenario_models.py
+++ b/opnfv_testapi/resources/scenario_models.py
@@ -50,10 +50,10 @@ class ScenarioProject(models.ModelBase):
'trust_indicators': ScenarioTI}
def __eq__(self, other):
- return [self.project == other.project and
- self._customs_eq(other) and
- self._scores_eq(other) and
- self._ti_eq(other)]
+ return [self.project == other.project
+ and self._customs_eq(other)
+ and self._scores_eq(other)
+ and self._ti_eq(other)]
def __ne__(self, other):
return not self.__eq__(other)