Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk committed May 30, 2024
1 parent 2cecd2b commit b267dac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reV/SAM/SAM.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ def ensure_res_len(arr, time_index):

freq = pd.infer_freq(time_index[:s])
msg = "frequencies do not match before and after 2/29"
assert freq == pd.infer_freq(time_index[s + 1 :]), msg
assert freq == pd.infer_freq(time_index[s + 1:]), msg
else:
freq = pd.infer_freq(time_index)
else:
Expand Down

0 comments on commit b267dac

Please sign in to comment.