diff --git a/dev-requirements.txt b/dev-requirements.txt index bc9a256..da69ef9 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,8 +1,8 @@ attrs==23.1.0 -black==23.7.0 -click==8.1.6 +black==23.9.0 +click==8.1.7 colorama==0.4.6 -coverage==7.3.0 +coverage==7.3.1 exceptiongroup==1.1.3 fastapi==0.100.0 iniconfig==2.0.0 @@ -12,10 +12,10 @@ mypy==1.5.1 packaging==23.1 pathspec==0.11.2 platformdirs==3.10.0 -pluggy==1.2.0 +pluggy==1.3.0 py==1.11.0 pyparsing==3.1.1 pytest-cov==4.1.0 -pytest==7.4.0 -ruff==0.0.284 -typos==1.16.5 +pytest==7.4.2 +ruff==0.0.287 +typos==1.16.11 diff --git a/refurb/gen.py b/refurb/gen.py index ccd6e6a..9f7b57e 100644 --- a/refurb/gen.py +++ b/refurb/gen.py @@ -53,7 +53,7 @@ def fzf(data: list[str] | None, args: list[str]) -> str: "FZF_DEFAULT_COMMAND": "find refurb -name '*.py' -not -path '*__*' 2> /dev/null || true", # noqa: E501 } - process = run( + process = run( # noqa: PLW1510 ["fzf", "--height=20", *args], # noqa: S603, S607 env=env, stdout=PIPE,