We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 548eac6 commit f9af902Copy full SHA for f9af902
.pre-commit-config.yaml
@@ -19,7 +19,7 @@ repos:
19
- id: codespell
20
files: ^.*\.(py|md|rst)$
21
- repo: https://github.com/astral-sh/ruff-pre-commit
22
- rev: v0.6.9
+ rev: v0.8.6
23
hooks:
24
- id: ruff
25
args: [ "--fix", "--exit-non-zero-on-fix" ]
tin/tests/assertions.py
@@ -7,10 +7,10 @@
7
from django.http import HttpResponse, HttpResponseRedirect
8
9
__all__ = (
10
- "is_redirect",
11
- "not_redirect",
12
"is_login_redirect",
+ "is_redirect",
13
"not_login_redirect",
+ "not_redirect",
14
)
15
16
tin/tests/create_users.py
@@ -2,7 +2,7 @@
2
3
from django.contrib.auth import get_user_model
4
5
-__all__ = ("user_data", "add_users_to_database")
+__all__ = ("add_users_to_database", "user_data")
6
# fmt: off
user_data = [
0 commit comments