Skip to content

Commit

Permalink
Linting again
Browse files Browse the repository at this point in the history
  • Loading branch information
eccoope committed Jun 27, 2024
1 parent b5335c6 commit 523ded3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pvanalytics/tests/features/test_snow.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_get_horizon_mask():
horizon = pd.Series(index=range(0, 360), data=0)
horizon[5:10] = 10
result = snow._get_horizon_mask(horizon, azimuth=np.array([4, 5, 7]),
elevation=np.array([-1, 11, np.nan]))
elevation=np.array([-1, 11, np.nan]))
expected = np.array([False, True, False])
assert_array_equal(result, expected)

Expand Down

0 comments on commit 523ded3

Please sign in to comment.