Skip to content

Commit c29985f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 130a70d commit c29985f

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

tests/test_crypto.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
from django.test import TestCase
21
from unittest.mock import patch
2+
3+
from django.test import TestCase
4+
5+
from knox.crypto import create_token_string, hash_token, make_hex_compatible
36
from knox.settings import knox_settings
4-
from knox.crypto import create_token_string, make_hex_compatible, hash_token
57

68

79
class CryptoUtilsTestCase(TestCase):

tests/test_models.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
from django.test import TestCase, override_settings
1+
from datetime import timedelta
2+
23
from django.contrib.auth import get_user_model
3-
from django.utils import timezone
44
from django.core.exceptions import ImproperlyConfigured
5-
from datetime import timedelta
5+
from django.test import TestCase, override_settings
6+
from django.utils import timezone
67
from freezegun import freeze_time
78

8-
from knox.settings import CONSTANTS, knox_settings
99
from knox.models import AuthToken, get_token_model
10+
from knox.settings import CONSTANTS, knox_settings
11+
1012

1113
class AuthTokenTests(TestCase):
1214
"""

tests/test_settings.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1+
import hashlib
12
from datetime import timedelta
23
from unittest import mock
3-
import hashlib
4-
from django.test import override_settings
5-
from django.core.signals import setting_changed
4+
65
from django.conf import settings
6+
from django.core.signals import setting_changed
7+
from django.test import override_settings
78

89
from knox.settings import (
9-
CONSTANTS,
10-
knox_settings,
11-
reload_api_settings,
12-
IMPORT_STRINGS
10+
CONSTANTS, IMPORT_STRINGS, knox_settings, reload_api_settings,
1311
)
1412

13+
1514
class TestKnoxSettings:
1615
@override_settings(REST_KNOX={
1716
'AUTH_TOKEN_CHARACTER_LENGTH': 32,

0 commit comments

Comments
 (0)