Skip to content

Commit

Permalink
Merge pull request #126 from ioos/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit autoupdate
  • Loading branch information
ocefpaf authored Jul 2, 2024
2 parents deea7fe + 9ec398c commit c96b30e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: add-trailing-comma

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.9
rev: v0.5.0
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
Expand Down
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 c96b30e

Please sign in to comment.