Skip to content

Commit 381e338

Browse files
Birgit SchachlerBirgit Schachler
authored andcommitted
Delete unnecessary parentheses
1 parent 013f409 commit 381e338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

windpowerlib/wind_turbine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def __init__(self, turbine_name, hub_height, d_rotor, cp_values=None,
9999

100100
self.power_output = None
101101

102-
if (self.cp_values is None and self.p_values is None):
102+
if self.cp_values is None and self.p_values is None:
103103
self.fetch_turbine_data()
104104

105105
def fetch_turbine_data(self):

0 commit comments

Comments
 (0)