Skip to content

Commit b841594

Browse files
committed
routing: Fix lint after merge that missed CI
1 parent c4f81a6 commit b841594

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

tornado/routing.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,18 @@ def request_callable(request):
184184
from tornado.log import app_log
185185
from tornado.util import basestring_type, import_object, re_unescape, unicode_type
186186

187-
from typing import Any, Union, Optional, Awaitable, List, Dict, Pattern, Tuple, overload, Sequence
187+
from typing import (
188+
Any,
189+
Union,
190+
Optional,
191+
Awaitable,
192+
List,
193+
Dict,
194+
Pattern,
195+
Tuple,
196+
overload,
197+
Sequence,
198+
)
188199

189200

190201
class Router(httputil.HTTPServerConnectionDelegate):

0 commit comments

Comments
 (0)