from enum import Enum, auto class TypeEnum(Enum): MALICIOUS = auto() BENIGN = auto()