Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#131)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.4.8](astral-sh/ruff-pre-commit@v0.4.3...v0.4.8)
- [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update pyproject.toml

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: skshetry <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and skshetry authored Jun 15, 2024
1 parent f0bcd55 commit 3490612
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ repos:
- id: sort-simple-yaml
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.4.3'
rev: 'v0.4.8'
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
additional_dependencies: ["tomli"]
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ ignore_missing_imports = true

[tool.codespell]
ignore-words-list = " "
skip = "CODE_OF_CONDUCT.rst"

[tool.ruff]
output-format = "full"
Expand Down
2 changes: 1 addition & 1 deletion src/dvc_task/proc/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def run_signature( # noqa: PLR0913
immutable=immutable,
)

def send_signal(self, name: str, sig: int, group: bool = False): # noqa: C901, PLR0912
def send_signal(self, name: str, sig: int, group: bool = False): # noqa: C901
"""Send `signal` to the specified named process."""
try:
process_info = self[name]
Expand Down

0 comments on commit 3490612

Please sign in to comment.