Add a missing : and imports

This commit is contained in:
2024-05-16 00:33:29 +02:00
parent f719ff767a
commit eb33def18c
3 changed files with 3 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ class Denoiser(Enum):
def __str__(self):
return self.name.lower()
class Distance(Enum)
class Distance(Enum):
ROOT_MEAN_SQUARE = auto()
PEARSON_CORRELATION = auto()