mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-27 18:45:05 +08:00
🐛 fix command rule type annotation error
This commit is contained in:
parent
d773fea709
commit
00c2ee8490
@ -304,7 +304,7 @@ class CommandRule:
|
|||||||
def __init__(self, cmds: List[Tuple[str, ...]]):
|
def __init__(self, cmds: List[Tuple[str, ...]]):
|
||||||
self.cmds = cmds
|
self.cmds = cmds
|
||||||
|
|
||||||
async def __call__(self, cmd: Tuple[str, ...] = Command()) -> bool:
|
async def __call__(self, cmd: Optional[Tuple[str, ...]] = Command()) -> bool:
|
||||||
return cmd in self.cmds
|
return cmd in self.cmds
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
@ -390,7 +390,7 @@ class ShellCommandRule:
|
|||||||
|
|
||||||
async def __call__(
|
async def __call__(
|
||||||
self,
|
self,
|
||||||
cmd: Tuple[str, ...] = Command(),
|
cmd: Optional[Tuple[str, ...]] = Command(),
|
||||||
msg: Message = EventMessage(),
|
msg: Message = EventMessage(),
|
||||||
state: T_State = State(),
|
state: T_State = State(),
|
||||||
) -> bool:
|
) -> bool:
|
||||||
|
Loading…
Reference in New Issue
Block a user