summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ttun_server/endpoints.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ttun_server/endpoints.py b/ttun_server/endpoints.py
index b62313c..2b92b76 100644
--- a/ttun_server/endpoints.py
+++ b/ttun_server/endpoints.py
@@ -49,7 +49,7 @@ class Proxy(HTTPEndpoint):
49 49
50 50
51class Health(HTTPEndpoint): 51class Health(HTTPEndpoint):
52 async def get(self) -> None: 52 async def get(self, _) -> None:
53 response = Response(content='OK', status_code=200) 53 response = Response(content='OK', status_code=200)
54 54
55 await response(self.scope, self.receive, self.send) 55 await response(self.scope, self.receive, self.send)