mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
Fixed tests for diminishin returns
This commit is contained in:
parent
0717245947
commit
a7fbab377e
1 changed files with 1 additions and 1 deletions
|
|
@ -426,7 +426,7 @@ class WallRecommendations(BaseUtility):
|
|||
not_diminishing_return = [
|
||||
rec for rec in self.recommendations if rec["new_u_value"] >= self.DIMINISHING_RETURNS_U_VALUE
|
||||
]
|
||||
if not not_diminishing_return:
|
||||
if not_diminishing_return:
|
||||
self.recommendations = [
|
||||
rec for rec in self.recommendations if rec["new_u_value"] >= self.DIMINISHING_RETURNS_U_VALUE
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue