Skip to content

Commit

Permalink
Version number cannot be None
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrondel committed Jan 14, 2025
1 parent c533364 commit 5285e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/consdb/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Configuration(BaseSettings):

name: str = Field("pqserver", title="Application name")

version: str | None = Field(None, title="Application version number")
version: str = Field("NOVERSION", title="Application version number")

url_prefix: str = Field("/consdb", title="URL prefix")

Expand Down

0 comments on commit 5285e4e

Please sign in to comment.