From 0f219fd494f835d4b937668d9609be5c835d7827 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 28 Jun 2025 10:48:20 +0100 Subject: [PATCH] fix linter errors #nolog --- examples/subapps/subapp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/subapps/subapp.py b/examples/subapps/subapp.py index 8507446..3d730e4 100644 --- a/examples/subapps/subapp.py +++ b/examples/subapps/subapp.py @@ -21,7 +21,7 @@ async def hello(request): - ''', 200, {'Content-Type': 'text/html'} + ''', 200, {'Content-Type': 'text/html'} # noqa: E501 @subapp.route('/second') @@ -41,4 +41,4 @@ async def second(request): - ''', 200, {'Content-Type': 'text/html'} + ''', 200, {'Content-Type': 'text/html'} # noqa: E501