purofle / phigros_bot

Missing module/function docstring PY-D0003
Documentation
Minor
6 months ago2 years old
Docstring missing for find_music
101
102
103@dp.inline_handler()
104async def find_music(inline_query: InlineQuery):105    text = inline_query.query
106
107    result_id: str = hashlib.md5(text.encode()).hexdigest()
Docstring missing for send_welcome
 62
 63
 64@dp.message_handler(commands=["start", "help"])
 65async def send_welcome(message: types.Message): 66    await message.reply("Hi!\n欢迎使用该 Bot! 请使用 inline 调用。\n")
 67
 68