使用 PyCharm 时,我在以下代码中遇到
E126 continuation line over-indented for hanging indent
错误:
bool_one = True
bool_two = False
ex_var: bool = (
is_even(5) and
bool_one and
bool_two
)
我最初将这三个布尔语句全部放在一行上,但按 Enter 键将它们放在不同的行上,以便于阅读。 PyCharm 为我处理了缩进。