From 95cf7c5956b5dc7afe54f083c9af06f0a6511c4c Mon Sep 17 00:00:00 2001 From: trojvn Date: Thu, 6 Nov 2025 22:53:16 +0300 Subject: [PATCH] refactor --- main.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/main.py b/main.py index ed0f716..79d3ab1 100644 --- a/main.py +++ b/main.py @@ -52,12 +52,7 @@ class IPAToolClient(BaseAsyncClient): return False async def auth_check(self, user: str) -> bool: - r = await self._post( - "/auth/check", - params={ - "user": user, - }, - ) + r = await self._post("/auth/check", params={"user": user}) if r.status != 200: return False json_data = await r.json()