From a95193af9a38e18891fe61ad58981f7fb8064df4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Feb 2023 17:01:09 +0000 Subject: [PATCH 1/2] Bump tox from 4.4.4 to 4.4.5 in /requirements Bumps [tox](https://github.com/tox-dev/tox) from 4.4.4 to 4.4.5. - [Release notes](https://github.com/tox-dev/tox/releases) - [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst) - [Commits](https://github.com/tox-dev/tox/compare/4.4.4...4.4.5) --- updated-dependencies: - dependency-name: tox dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements/tox.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/tox.txt b/requirements/tox.txt index cfb763835..b07cbb955 100644 --- a/requirements/tox.txt +++ b/requirements/tox.txt @@ -1,3 +1,3 @@ -r ./coverage.txt -tox==4.4.4 +tox==4.4.5 tox-gh-actions==3.0.0 From fdee87ca4b4c859a78e7853eeb5947cb84f16e9f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 8 Feb 2023 17:01:26 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- simple_history/tests/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple_history/tests/models.py b/simple_history/tests/models.py index 9b5534314..a9e86ede1 100644 --- a/simple_history/tests/models.py +++ b/simple_history/tests/models.py @@ -94,7 +94,7 @@ class PollWithAlternativeManager(models.Model): class CustomPollManager(models.Manager): def get_queryset(self): - return super(CustomPollManager, self).get_queryset().exclude(hidden=True) + return super().get_queryset().exclude(hidden=True) class PollWithCustomManager(models.Model):