From 234716d1007ea73870032ac2ad53c74373f7499a Mon Sep 17 00:00:00 2001 From: Edoardo Rosa <6991986+notdodo@users.noreply.github.com> Date: Fri, 20 Dec 2024 21:15:54 +0100 Subject: [PATCH] fix: mypy --- auto-tagger/configuration.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/auto-tagger/configuration.py b/auto-tagger/configuration.py index 54b0f5d..dc5e32d 100644 --- a/auto-tagger/configuration.py +++ b/auto-tagger/configuration.py @@ -12,10 +12,10 @@ class BumpStrategy(StrEnum): """Enum containing the different version bump strategy for semver""" - MAJOR: str = "major" - MINOR: str = "minor" - PATCH: str = "patch" - SKIP: str = "skip" + MAJOR = "major" + MINOR = "minor" + PATCH = "patch" + SKIP = "skip" class Configuration: