Skip to content

Commit

Permalink
fix: 🩹 cast current version as string
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDynamo committed May 2, 2024
1 parent 331be20 commit 4490590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/wizarr-backend/wizarr_backend/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
enable_tracing=True,
traces_sample_rate=1.0,
environment=app.debug and "development" or "production",
release=get_current_version(),
release=str(get_current_version()),
)

# Base route for testing
Expand Down

0 comments on commit 4490590

Please sign in to comment.