mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-07-28 00:31:14 +00:00
Improve
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
import none
|
||||
from none.command import Session, CommandGroup
|
||||
from none.expressions import weather as expr
|
||||
|
||||
from . import expressions as expr
|
||||
|
||||
w = CommandGroup('weather')
|
||||
|
||||
@ -14,7 +14,7 @@ async def weather(session: Session):
|
||||
@weather.args_parser
|
||||
async def _(session: Session):
|
||||
if session.current_key:
|
||||
session.args[session.current_key] = session.current_arg.strip()
|
||||
session.args[session.current_key] = session.current_arg_text.strip()
|
||||
|
||||
|
||||
@w.command('suggestion', aliases=('生活指数', '生活建议', '生活提示'))
|
12
none/plugins/weather/expressions.py
Normal file
12
none/plugins/weather/expressions.py
Normal file
@ -0,0 +1,12 @@
|
||||
WHICH_CITY = (
|
||||
'你想知道哪个城市的天气呢?',
|
||||
'你要查询的城市是哪个呢?',
|
||||
'你要查询哪个城市呢?',
|
||||
'哪个城市呢?',
|
||||
'请告诉我你要查询的城市~',
|
||||
)
|
||||
|
||||
REPORT = (
|
||||
'你查询了{city}的天气',
|
||||
'{city}的天气是……',
|
||||
)
|
Reference in New Issue
Block a user