Skip to content

Commit

Permalink
fix: mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
notdodo committed Dec 20, 2024
1 parent fa22d2c commit 234716d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions auto-tagger/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 234716d

Please sign in to comment.