mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
233e7ab58d
Co-authored-by: luoshuijs <luoshuijs@outlook.com> Co-authored-by: Karako <karakohear@gmail.com> Co-authored-by: xtaodada <xtao@xtaolink.cn>
22 lines
510 B
Python
22 lines
510 B
Python
import asyncio
|
|
from typing import Optional
|
|
|
|
import aiohttp # pylint: disable=W0406
|
|
from aiohttp import ClientError
|
|
|
|
from utils.patch.methods import patch, patchable
|
|
|
|
|
|
class AioHttpTimeoutException(ClientError):
|
|
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
|