From b841594ab6269b8212a76b189a25ab00a4bc2f7e Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Tue, 29 Apr 2025 16:03:17 -0400 Subject: [PATCH] routing: Fix lint after merge that missed CI --- tornado/routing.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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): -- 2.47.2