Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #985

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ repos:
rev: v5.0.0
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.8.3
rev: v0.9.2
hooks:
# Run the linter.
- id: ruff
Expand Down
2 changes: 1 addition & 1 deletion risuclient/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,7 @@ def parse_args(default=False, parse=False):
g.add_argument(
"-v",
"--verbose",
help=_("Increase verbosity of output (may be " "specified more than once)"),
help=_("Increase verbosity of output (may be specified more than once)"),
default=0,
action="count",
)
Expand Down
2 changes: 1 addition & 1 deletion risuclient/tools/dmidecode.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _get_output():

try:
output = subprocess.check_output(
"PATH=$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin " "sudo dmidecode",
"PATH=$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin sudo dmidecode",
shell=True,
)
except Exception as e:
Expand Down
Loading