1
0

refactor: clean up variable names

This commit is contained in:
2025-08-04 12:31:10 +09:00
parent 6987c26b11
commit 69a5fd2e97
3 changed files with 30 additions and 30 deletions

View File

@@ -2,7 +2,7 @@ import asyncio
from aiohttp import ClientRequest, ClientResponse, ClientHandlerType
class SemaphoreMiddleware(asyncio.Semaphore):
class Semaphore(asyncio.Semaphore):
async def __call__(self, req: ClientRequest, handler: ClientHandlerType) -> ClientResponse:
async with self:
return await handler(req)