Skip to content

Commit c275a84

Browse files
author
Andrew Godbehere
committed
pep8 formatting adjustments
1 parent 171e32e commit c275a84

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pvlib/tests/test_clearsky.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -675,20 +675,20 @@ def test_detect_clearsky_missing_index(detect_clearsky_data):
675675
def test_detect_clearsky_not_enough_data(detect_clearsky_data):
676676
expected, cs = detect_clearsky_data
677677
with pytest.raises(ValueError, match='have at least'):
678-
clearsky.detect_clearsky(expected['GHI'], cs['ghi'], window_length=60)
678+
clearsky.detect_clearsky(expected['GHI'], cs['ghi'], window_length=60)
679679

680680

681681
@pytest.mark.parametrize("window_length", [5, 10, 15, 20, 25])
682682
def test_detect_clearsky_optimizer_not_failed(
683-
detect_clearsky_data,
684-
window_length
685-
):
683+
detect_clearsky_data, window_length
684+
):
686685
expected, cs = detect_clearsky_data
687686
clear_samples = clearsky.detect_clearsky(
688687
expected["GHI"], cs["ghi"], window_length=window_length
689688
)
690689
assert isinstance(clear_samples, pd.Series)
691690

691+
692692
@pytest.fixture
693693
def detect_clearsky_helper_data():
694694
samples_per_window = 3

0 commit comments

Comments
 (0)