报告使用不返回任何内容的函数进行赋值的情况。

此检查与 pylint 检查 E1111 相似。

示例:

def just_print():
    print("Hello!")


action = just_print()

IDE 提议的快速修复是移除此赋值。