mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-07-27 16:21:28 +00:00
Improve code docs
This commit is contained in:
@ -15,10 +15,16 @@ class BaseSession:
|
||||
async def send(self,
|
||||
message: Union[str, Dict[str, Any], List[Dict[str, Any]]],
|
||||
*, ignore_failure: bool = True) -> None:
|
||||
"""
|
||||
Send a message ignoring failure by default.
|
||||
"""
|
||||
return await send(self.bot, self.ctx, message,
|
||||
ignore_failure=ignore_failure)
|
||||
|
||||
async def send_expr(self,
|
||||
expr: Union[str, Sequence[str], Callable],
|
||||
**kwargs):
|
||||
"""
|
||||
Sending a expression message ignoring failure by default.
|
||||
"""
|
||||
return await send_expr(self.bot, self.ctx, expr, **kwargs)
|
||||
|
Reference in New Issue
Block a user