Skip to content

Commit

Permalink
chore(deps): update dependency ruff to v0.5.1 (#735)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
  • Loading branch information
renovate[bot] and xoxys authored Jul 8, 2024
1 parent 4cfd618 commit f67f112
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 23 deletions.
4 changes: 1 addition & 3 deletions dockertidy/garbage_collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ def _filter_excluded_containers(self, containers):
return containers

def include_container(container):
if self._should_exclude_container_with_labels(container):
return False
return True
return not self._should_exclude_container_with_labels(container)

return filter(include_container, containers)

Expand Down
39 changes: 20 additions & 19 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ zipp = "3.19.2"
docker-tidy = "dockertidy.cli:main"

[tool.poetry.group.dev.dependencies]
ruff = "0.4.10"
ruff = "0.5.1"
pytest = "8.2.2"
pytest-mock = "3.14.0"
pytest-cov = "5.0.0"
Expand Down

0 comments on commit f67f112

Please sign in to comment.