fix for python 3.11

This commit is contained in:
Jonathan Wren 2022-10-01 16:26:10 -07:00
parent ce4df8ee23
commit e695e7a30c

View file

@ -7,6 +7,9 @@ from .BaseEncryption import BaseEncryption
class EncryptionMethods(str, Enum):
def __str__(self) -> str:
return self.value
NONE = "NoEncryption"
JRNLV1 = "Jrnlv1Encryption"
JRNLV2 = "Jrnlv2Encryption"