Pylint fix (#51083)

This commit is contained in:
Erik Montnemery 2021-05-25 19:53:18 +02:00 committed by GitHub
parent 023c094b01
commit abd6f739e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -788,7 +788,7 @@ def verify_domain_control(
class ReloadServiceHelper:
"""Helper for reload services to minimize unnecessary reloads."""
def __init__(self, service_func: Callable[[ServiceCall], Awaitable]):
def __init__(self, service_func: Callable[[ServiceCall], Awaitable]) -> None:
"""Initialize ReloadServiceHelper."""
self._service_func = service_func
self._service_running = False