We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bef2e45 commit 4c0aad1Copy full SHA for 4c0aad1
silk/models.py
@@ -6,6 +6,8 @@
6
7
import sqlparse
8
from django.conf import settings
9
+from django.core.files.storage import storages
10
+from django.core.files.storage.handler import InvalidStorageError
11
from django.db import models, transaction
12
from django.db.models import (
13
BooleanField,
@@ -26,8 +28,6 @@
26
28
from silk.config import SilkyConfig
27
29
from silk.utils.profile_parser import parse_profile
30
-from django.core.files.storage import storages
-from django.core.files.storage.handler import InvalidStorageError
31
try:
32
silk_storage = storages['SILKY_STORAGE']
33
except InvalidStorageError:
0 commit comments