Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pvlib/modelchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -1686,7 +1686,7 @@ def _prepare_temperature_single_array(self, data, poa):
self.temperature_model()
return self

def _prepare_temperature(self, data=None):
def _prepare_temperature(self, data):
"""
Sets cell_temperature using inputs in data and the specified
temperature model.
Expand Down Expand Up @@ -1878,7 +1878,7 @@ def run_model_from_poa(self, data):

return self

def _run_from_effective_irrad(self, data=None):
def _run_from_effective_irrad(self, data):
"""
Executes the temperature, DC, losses and AC models.

Expand Down Expand Up @@ -1907,7 +1907,7 @@ def _run_from_effective_irrad(self, data=None):

return self

def run_model_from_effective_irradiance(self, data=None):
def run_model_from_effective_irradiance(self, data):
"""
Run the model starting with effective irradiance in the plane of array.

Expand Down