Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Bump flake8-bugbear from 21.4.3 to 21.9.2 #373

Merged
merged 2 commits into from
Oct 16, 2021
Merged
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 noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Nox failed to import the 'nox-poetry' package.
Please install it using the following command:
{sys.executable} -m pip install nox-poetry"""
raise SystemExit(dedent(message))
raise SystemExit(dedent(message)) from None


package = "django_sorting_bootstrap"
Expand Down
8 changes: 4 additions & 4 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 @@ -35,7 +35,7 @@ django = ">=2.0"
black = "^21.9b0"
flake8 = "^4.0.1"
flake8-bandit = "^2.1.2"
flake8-bugbear = "^21.4.3"
flake8-bugbear = "^21.9.2"
safety = "^1.10.3"
pytest = "^6.2.5"
mypy = "^0.910"
Expand Down
2 changes: 1 addition & 1 deletion src/django_sorting_bootstrap/templatetags/sorting_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def auto_sort(parser, token):
except ValueError:
raise template.TemplateSyntaxError(
"{} tag requires a single argument".format(token.contents.split()[0])
)
) from None
return SortedQuerysetNode(queryset)


Expand Down