意外类型:(int, int) 可能类型:(SupportsIndex, None) (slice, Iterable[None])

问题描述 投票:0回答:2

这段代码有什么问题:

split_list = [3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 45]
split_list2 = [None, None, None, None, None, None, None, None, None, None, None, None]
result = [3600, 3600, 3600, 3600, 3600, 3600, 3600, 3600, 45, None, None, None]

for i in range(len(split_list)):
    split_list2[i] = split_list[i]

在 PyCharm 中它会发出警告;

意外类型:(int, int) 可能类型:(SupportsIndex, None) (slice, Iterable[None])

但是脚本运行得很好,并且这段代码完全按照我的预期工作。不过,我不喜欢 IDE 中出现警告,有什么快速修复方法吗?

python pycharm
2个回答
6
投票

此警告可通过将 PyCharm 更新至 2021.2.2 来解决。

这似乎是 IDE 静态类型检查器早期版本中的一个错误。

一位用户在评论中报告说,此错误在 PyCharm 2021.2.3 版本中回归。

我刚刚使用PyCharm 2022.1专业版再次测试了一下,该bug再次得到解决。这是截图:

screenshot of code in IDE's editor window


0
投票

用 venv 将目录标记为“排除”对我很有帮助。

© www.soinside.com 2019 - 2024. All rights reserved.