Fix Semver dataclass order conflict with Python 3.11

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
rob 2025-12-31 19:34:36 -04:00
parent cfb9858967
commit c8a937ec15
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ rate_limiter = RateLimiter()
password_hasher = PasswordHasher(memory_cost=65536, time_cost=3, parallelism=4)
@dataclass(frozen=True, order=True)
@dataclass(frozen=True)
class Semver:
major: int
minor: int