[Python3][pylint]C0325:Unnecessary parens after 'not' keyword

notキーワードの後ろに不要なカッコがあります。

エラー例

def add(value):
    return not (value)

解決方法

カッコを削除します。
def add(value):
    return not value

検証環境

関連ページ