diff --git a/monkey/common/common_consts/credential_component_type.py b/monkey/common/common_consts/credential_component_type.py index 76326e50e..25bd3a168 100644 --- a/monkey/common/common_consts/credential_component_type.py +++ b/monkey/common/common_consts/credential_component_type.py @@ -1,9 +1,9 @@ -from enum import Enum +from enum import Enum, auto class CredentialComponentType(Enum): - USERNAME = "username" - PASSWORD = "password" - NT_HASH = "nt_hash" - LM_HASH = "lm_hash" - SSH_KEYPAIR = "ssh_keypair" + USERNAME = auto() + PASSWORD = auto() + NT_HASH = auto() + LM_HASH = auto() + SSH_KEYPAIR = auto()