Skip to content

Commit

Permalink
Update ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
TheReverend403 committed Aug 16, 2024
1 parent e3d9d85 commit 2688d48
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 30 deletions.
55 changes: 28 additions & 27 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pste/commands/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ def user_list():
return

term_width, _ = shutil.get_terminal_size()
if term_width > TERM_WIDTH_MAX:
term_width = TERM_WIDTH_MAX
term_width = min(term_width, TERM_WIDTH_MAX)

seperator = "".join("-" for _ in range(term_width))

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ redis = { extras = ["hiredis"], version = "^5.0.3" }
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
Flask-DebugToolbar = "^0.14.0"
ruff = "^0.5.0"
ruff = "^0.6.0"
pre-commit-hooks = "^4.5.0"
shellcheck-py = "^0.10.0.1"

Expand Down

0 comments on commit 2688d48

Please sign in to comment.