Skip to content

Commit ba9ac63

Browse files
committed
Fix lint error
1 parent a6678c4 commit ba9ac63

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

server/reportmanager/views.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# This Source Code Form is subject to the terms of the Mozilla Public
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4+
import html
45
import json
56
import sys
6-
import html
7-
from collections import defaultdict, OrderedDict
7+
from collections import OrderedDict, defaultdict
88
from datetime import datetime, timedelta
99
from logging import getLogger
1010

@@ -50,14 +50,14 @@
5050
)
5151
from .serializers import (
5252
BucketSerializer,
53+
BucketSpikeSerializer,
5354
BucketVueSerializer,
5455
BugProviderSerializer,
5556
BugzillaTemplateSerializer,
5657
InvalidArgumentException,
5758
NotificationSerializer,
5859
ReportEntrySerializer,
5960
ReportEntryVueSerializer,
60-
BucketSpikeSerializer,
6161
)
6262

6363
if sys.version_info[:2] < (3, 12):

0 commit comments

Comments
 (0)