Skip to content

Commit 3acca27

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

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

silk/models.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
from django.conf import settings
99
from django.db import models, transaction
1010
from django.db.models import (
11+
Avg,
1112
BooleanField,
1213
CharField,
14+
Count,
1315
DateTimeField,
1416
FileField,
1517
FloatField,
@@ -20,14 +22,14 @@
2022
TextField,
2123
)
2224
from django.shortcuts import render
23-
from django.db.models import Avg, Count
24-
from .models import Request
2525
from django.utils import timezone
2626
from django.utils.safestring import mark_safe
2727

2828
from silk.config import SilkyConfig
2929
from silk.utils.profile_parser import parse_profile
3030

31+
from .models import Request
32+
3133
try:
3234
# New in Django 4.2
3335
from django.core.files.storage import storages

0 commit comments

Comments
 (0)