Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 1, 2024
1 parent 0bb8bed commit 9ec398c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ioos_qc/qartod.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ def run_test(test_threshold, flag_value) -> None:
# find data ranges that are within threshold and flag them
test_results = np.ma.filled(data_range < tolerance, fill_value=False)
# data points before end of first window should pass
n_fill = count if count < len(inp) else len(inp)
n_fill = min(len(inp), count)
test_results = np.insert(test_results, 0, np.full((n_fill,), False))
flag_arr[test_results] = flag_value

Expand Down

0 comments on commit 9ec398c

Please sign in to comment.