报告语句中的尾随分号。

示例:

def my_func(a):
    c = a ** 2;
    return c

IDE 提供移除尾随分号的快速修复。 应用后,代码变为:

def my_func(a):
    c = a ** 2
    return c