Skip to content

Commit

Permalink
chore(lint): fix imports, normalize trailing , on list/tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
rouilj committed Mar 20, 2024
1 parent 8481891 commit 9df8e71
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions roundup/cgi/wsgi_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,13 @@
#

import os
import weakref

from contextlib import contextmanager

from roundup.anypy.html import html_escape

import roundup.instance
from roundup.cgi import TranslationService
from roundup.anypy import http_
from roundup.anypy.html import html_escape
from roundup.anypy.strings import s2b

from roundup.cgi import TranslationService
from roundup.cgi.client import BinaryFieldStorage

BaseHTTPRequestHandler = http_.server.BaseHTTPRequestHandler
Expand All @@ -28,7 +24,7 @@
http_.server.BaseHTTPRequestHandler.responses[429] = (
'Too Many Requests',
'The user has sent too many requests in '
'a given amount of time ("rate limiting")'
'a given amount of time ("rate limiting")',
)

class Headers(object):
Expand Down

0 comments on commit 9df8e71

Please sign in to comment.