fix linter errors #nolog

This commit is contained in:
Miguel Grinberg
2025-06-28 10:48:20 +01:00
parent e146e2d08d
commit 0f219fd494

View File

@@ -21,7 +21,7 @@ async def hello(request):
</div>
</body>
</html>
''', 200, {'Content-Type': 'text/html'}
''', 200, {'Content-Type': 'text/html'} # noqa: E501
@subapp.route('/second')
@@ -41,4 +41,4 @@ async def second(request):
</div>
</body>
</html>
''', 200, {'Content-Type': 'text/html'}
''', 200, {'Content-Type': 'text/html'} # noqa: E501