意外类型:(int, int) 可能类型:(SupportsIndex, None) (slice, Iterable[None])
Unexpected type(s): (int, int) Possible type(s): (SupportsIndex, None) (slice, Iterable[None])
这段代码有什么问题:
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中发出警告;
Unexpected type(s): (int, int) Possible type(s): (SupportsIndex, None) (slice, Iterable[None])
但是脚本运行得很好并且这段代码完全符合我的预期。不过,我不喜欢 IDE 中的警告,有什么快速修复方法吗?
此警告已通过更新至 PyCharm 至 2021.2.2 解决。
这似乎是 IDE 静态类型检查器早期版本中的错误。
这段代码有什么问题:
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中发出警告;
Unexpected type(s): (int, int) Possible type(s): (SupportsIndex, None) (slice, Iterable[None])
但是脚本运行得很好并且这段代码完全符合我的预期。不过,我不喜欢 IDE 中的警告,有什么快速修复方法吗?
此警告已通过更新至 PyCharm 至 2021.2.2 解决。
这似乎是 IDE 静态类型检查器早期版本中的错误。