Skip to content

Commit

Permalink
zip for py39 no strict field
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelduchesne committed Oct 25, 2024
1 parent 579fd6a commit 0e673bd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions archetypal/template/constructions/window_construction.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,5 @@ def heat_balance(self, environmental_conditions="summer", G_t=783):

def assert_almost_equal(self, temperatures_last, temperatures_next):
return all(
abs(desired - actual) < 1.5 * 10 ** (-3)
for desired, actual in zip(temperatures_last, temperatures_next, strict=False)
abs(desired - actual) < 1.5 * 10 ** (-3) for desired, actual in zip(temperatures_last, temperatures_next)
)

0 comments on commit 0e673bd

Please sign in to comment.