Improve a lot

This commit is contained in:
Richard Chien
2018-06-27 22:05:12 +08:00
parent 6d95c16f5e
commit ae2d177d5a
11 changed files with 163 additions and 59 deletions

View File

@ -1,4 +1,4 @@
from none.command import Session, CommandGroup
from none.command import CommandSession, CommandGroup
from . import expressions as expr
@ -6,17 +6,17 @@ w = CommandGroup('weather')
@w.command('weather', aliases=('天气', '天气预报'))
async def weather(session: Session):
async def weather(session: CommandSession):
city = session.require_arg('city', prompt_expr=expr.WHICH_CITY)
await session.send_expr(expr.REPORT, city=city)
@weather.args_parser
async def _(session: Session):
async def _(session: CommandSession):
if session.current_key:
session.args[session.current_key] = session.current_arg_text.strip()
@w.command('suggestion', aliases=('生活指数', '生活建议', '生活提示'))
async def suggestion(session: Session):
async def suggestion(session: CommandSession):
await session.send('suggestion')