Skip to content

Commit

Permalink
Fix code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jnettels authored Feb 4, 2025
1 parent 5871813 commit 61a222c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_particular_profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def setup_class(cls):
shlp_type="EFH",
wind_class=0,
building_class=1,
ww_only=True # Set the new attribute
ww_only=True, # Set the tested attribute
)

def test_ww_only_sigmoid_parameters(self):
Expand All @@ -298,4 +298,6 @@ def test_ww_only_sigmoid_parameters(self):
assert a == 0
assert b == 0
assert c == 0
assert d != 0 # Ensure d is not zero as it should be the only parameter used
assert (
d != 0
) # Ensure d is not zero as it should be the only parameter used

0 comments on commit 61a222c

Please sign in to comment.