From: Ben Darnell Date: Tue, 29 Apr 2025 20:03:17 +0000 (-0400) Subject: routing: Fix lint after merge that missed CI X-Git-Tag: v6.5.0b1~1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3491%2Fhead;p=thirdparty%2Ftornado.git routing: Fix lint after merge that missed CI --- diff --git a/tornado/routing.py b/tornado/routing.py index ef99c20b..245070c7 100644 --- a/tornado/routing.py +++ b/tornado/routing.py @@ -184,7 +184,18 @@ from tornado.escape import url_escape, url_unescape, utf8 from tornado.log import app_log from tornado.util import basestring_type, import_object, re_unescape, unicode_type -from typing import Any, Union, Optional, Awaitable, List, Dict, Pattern, Tuple, overload, Sequence +from typing import ( + Any, + Union, + Optional, + Awaitable, + List, + Dict, + Pattern, + Tuple, + overload, + Sequence, +) class Router(httputil.HTTPServerConnectionDelegate):