Fix Pylint warnings

This commit is contained in:
doctorpangloss
2024-11-18 14:10:58 -08:00
parent fb7a3f9386
commit 264d84db39
4 changed files with 13 additions and 13 deletions
@@ -45,7 +45,7 @@ class InternalRoutes:
return web.json_response("".join([(l["t"] + " - " + l["m"]) for l in logger.get_logs()]))
@self.routes.get('/logs/raw')
async def get_logs(request):
async def get_logs_raw(request):
self.terminal_service.update_size()
return web.json_response({
"entries": list(logger.get_logs()),