Skip to content

Commit 9df8e71

Browse files
committed
chore(lint): fix imports, normalize trailing , on list/tuple
1 parent 8481891 commit 9df8e71

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

roundup/cgi/wsgi_handler.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,13 @@
55
#
66

77
import os
8-
import weakref
9-
108
from contextlib import contextmanager
119

12-
from roundup.anypy.html import html_escape
13-
1410
import roundup.instance
15-
from roundup.cgi import TranslationService
1611
from roundup.anypy import http_
12+
from roundup.anypy.html import html_escape
1713
from roundup.anypy.strings import s2b
18-
14+
from roundup.cgi import TranslationService
1915
from roundup.cgi.client import BinaryFieldStorage
2016

2117
BaseHTTPRequestHandler = http_.server.BaseHTTPRequestHandler
@@ -28,7 +24,7 @@
2824
http_.server.BaseHTTPRequestHandler.responses[429] = (
2925
'Too Many Requests',
3026
'The user has sent too many requests in '
31-
'a given amount of time ("rate limiting")'
27+
'a given amount of time ("rate limiting")',
3228
)
3329

3430
class Headers(object):

0 commit comments

Comments
 (0)