Results 2 issues of 小大圣

ncmbot.play_list_detail()的返回值里,"tracks"和"trackIds"现在都只能返回歌单里的第一首歌,前几天"trackIds"还可以正常工作返回歌单里的所有歌,请问这是怎么回事orz

在使用on_slash_command新建斜杠指令时,为options提供动态的列表,会因为list不是covariant的而报错,即使是仅仅将两个静态列表相加也会报错。 MWE: ``` from nonebot.adapters.discord import on_slash_command from nonebot.adapters.discord.api import StringOption test = on_slash_command(name="test", description="test", options=[StringOption(name="1", description="1")] + []) ``` Pylance报错: ``` Argument of type "list[StringOption]" cannot be assigned to...