def isnot_operator_compliant()

in src/python/detectors/equality_vs_identity/equality_vs_identity.py [0:0]


def isnot_operator_compliant():
    phrase = "Thisisstring"
    # Compliant: uses the correct mechanism for checking the identity.
    if phrase is not None:
        print(True)