Skip to content

Pyflakes

A simple program which checks Python source files for errors.

Disable ignore

아래와 같이 코드 안에 # NOQA주석을 삽입할 수 있다.

def isDebug():
    if int(ARGUMENTS.get(DEBUG_PARAM_NAME, 0)): # NOQA
        return True
    else:
        return False

See also