♻️ reformat module scope
This commit is contained in:
parent
afa85889dd
commit
1ee7a8b58a
@ -55,7 +55,7 @@ async def info_command(_: Client, message: Message):
|
||||
module.latestRelease,
|
||||
module.createdAt,
|
||||
module.updatedAt,
|
||||
"\n ".join(module.scope),
|
||||
"\n ".join(module.scope) if module.scope else "未声明",
|
||||
),
|
||||
reply_markup=gen_info_button(module),
|
||||
quote=True,
|
||||
|
@ -24,7 +24,7 @@ async def inline_process(_: Client, query: InlineQuery):
|
||||
module.latestRelease,
|
||||
module.createdAt,
|
||||
module.updatedAt,
|
||||
"\n ".join(module.scope),
|
||||
"\n ".join(module.scope) if module.scope else "未声明",
|
||||
)),
|
||||
reply_markup=gen_info_button(module),
|
||||
))
|
||||
@ -49,7 +49,7 @@ async def inline_process(_: Client, query: InlineQuery):
|
||||
module.latestRelease,
|
||||
module.createdAt,
|
||||
module.updatedAt,
|
||||
"\n ".join(module.scope),
|
||||
"\n ".join(module.scope) if module.scope else "未声明",
|
||||
)),
|
||||
reply_markup=gen_info_button(module),
|
||||
))
|
||||
|
Loading…
Reference in New Issue
Block a user