This commit is contained in:
Félix David 2022-11-09 17:09:38 +01:00
parent d5b8b0e6e7
commit f111fc3763
2 changed files with 2 additions and 3 deletions

View file

@ -6,7 +6,6 @@ that has project name as a context (e.g. on 'ProjectEntity'?).
+ We will need more specific functions doing wery specific queires really fast.
"""
from datetime import datetime
import re
import collections

View file

@ -30,8 +30,8 @@ class SyncServerModuleRestApi:
self.reset_timer,
)
async def reset_timer(self, request):
# Force timer to run immediately
async def reset_timer(self, _request):
"""Force timer to run immediately."""
self.module.reset_timer()
return Response(status=200)