From 1a5a01552d812c5b7fde9444a4fbe840b8c8b1f8 Mon Sep 17 00:00:00 2001 From: ptajvar Date: Wed, 21 Feb 2024 10:39:58 +0100 Subject: [PATCH] removed unused import of Enum --- src/pixelator/plot/constants.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pixelator/plot/constants.py b/src/pixelator/plot/constants.py index e2de8306..ceeaf2d0 100644 --- a/src/pixelator/plot/constants.py +++ b/src/pixelator/plot/constants.py @@ -3,10 +3,8 @@ Copyright (c) 2023 Pixelgen Technologies AB. """ -from enum import Enum - -class Color(): +class Color: """Class for color constants.""" LIGHTGREY = "#bebebe"