Skip to content

Commit 9f9810a

Browse files
committed
Fix import order for isort
1 parent 66fd2d0 commit 9f9810a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

health_check/cache/backends.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
from django.core.cache import CacheKeyWarning, caches
21
from django.conf import settings
2+
from django.core.cache import CacheKeyWarning, caches
33

44
from health_check.backends import BaseHealthCheckBackend
55
from health_check.exceptions import ServiceReturnedUnexpectedResult, ServiceUnavailable
66

7-
87
try:
98
# Exceptions thrown by Redis do not subclass builtin exceptions like ConnectionError.
109
# Additionally, not only connection errors (ConnectionError -> RedisError) can be raised,

0 commit comments

Comments
 (0)