mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
update matcher
This commit is contained in:
parent
761d725aed
commit
ed404901ca
1
.gitignore
vendored
1
.gitignore
vendored
@ -186,3 +186,4 @@ typings/
|
||||
.idea
|
||||
.vscode
|
||||
dev
|
||||
doc
|
||||
|
@ -88,6 +88,7 @@ class Matcher:
|
||||
@classmethod
|
||||
def got(cls,
|
||||
key: str,
|
||||
prompt: Optional[str] = None,
|
||||
args_parser: Optional[Callable[[Event, dict], None]] = None):
|
||||
|
||||
def _decorator(func: Handler) -> Handler:
|
||||
@ -112,11 +113,11 @@ class Matcher:
|
||||
return _decorator
|
||||
|
||||
@classmethod
|
||||
def finish(cls):
|
||||
def finish(cls, prompt: Optional[str] = None):
|
||||
raise FinishedException
|
||||
|
||||
@classmethod
|
||||
def reject(cls):
|
||||
def reject(cls, prompt: Optional[str] = None):
|
||||
raise RejectedException
|
||||
|
||||
async def run(self, event):
|
||||
|
Loading…
Reference in New Issue
Block a user