We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb67582 commit 3acca27Copy full SHA for 3acca27
silk/models.py
@@ -8,8 +8,10 @@
8
from django.conf import settings
9
from django.db import models, transaction
10
from django.db.models import (
11
+ Avg,
12
BooleanField,
13
CharField,
14
+ Count,
15
DateTimeField,
16
FileField,
17
FloatField,
@@ -20,14 +22,14 @@
20
22
TextField,
21
23
)
24
from django.shortcuts import render
-from django.db.models import Avg, Count
-from .models import Request
25
from django.utils import timezone
26
from django.utils.safestring import mark_safe
27
28
from silk.config import SilkyConfig
29
from silk.utils.profile_parser import parse_profile
30
31
+from .models import Request
32
+
33
try:
34
# New in Django 4.2
35
from django.core.files.storage import storages
0 commit comments