我正在使用提示工具包Python库和代码:
from __future__ import annotations
from prompt_toolkit.shortcuts import checkboxlist_dialog
results: list[str] = checkboxlist_dialog(
title="CheckboxList dialog",
text="What would you like in your breakfast ?",
values=[
("eggs", "Eggs"),
("bacon", "Bacon"),
("croissants", "20 Croissants"),
("daily", "The breakfast of the day"),
],
).run()
当我运行 mypy 0.931 时,我得到:
test.py:4: error: Incompatible types in assignment (expression has type "List[<nothing>]", variable has type "List[str]")
test.py:4: note: "List" is invariant -- see https://mypy.readthedocs.io/en/stable/common_issues.html#variance
test.py:4: note: Consider using "Sequence" instead, which is covariant
test.py:7: error: Argument "values" to "checkboxlist_dialog" has incompatible type "List[Tuple[str, str]]"; expected "Optional[List[Tuple[<nothing>, Union[str, MagicFormattedText, List[Union[Tuple[str, str], Tuple[str, str, Callable[[MouseEvent], None]]]], Callable[[], Any], None]]]]"
我不确定问题是否出在我的代码上,因为返回值类似于
['eggs', 'bacon']
,它是 list[str]
。 mypy 的这个错误也很奇怪,因为我认为我不应该在这里使用协变。有关可能出现问题的任何提示吗?
我认为问题在于 mypy 关于
checkboxlist_dialog
函数的信息非常少,并且当然不知道它的返回类型可以从 value
参数中找出。
您可能需要写:
from typing import cast
results = cast(list[string], checkboxlist_dialog(....))
这告诉 mypy 你知道自己在做什么,并且返回类型确实是
list[string]
,无论它怎么想。