mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 04:45:27 +00:00
21 lines
487 B
Python
21 lines
487 B
Python
import asyncio
|
|
from typing import Optional
|
|
|
|
import aiohttp # pylint: disable=W0406
|
|
|
|
from utils.patch.methods import patch, patchable
|
|
|
|
|
|
class AioHttpTimeoutException(asyncio.TimeoutError):
|
|
pass
|
|
|
|
|
|
@patch(aiohttp.helpers.TimerContext)
|
|
class TimerContext:
|
|
@patchable
|
|
def __exit__(self, *args, **kwargs) -> Optional[bool]:
|
|
try:
|
|
return self.old___exit__(*args, **kwargs)
|
|
except asyncio.TimeoutError:
|
|
raise AioHttpTimeoutException from None
|