We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a359ec commit 7f29e2dCopy full SHA for 7f29e2d
2 files changed
root/app/models.py
@@ -99,7 +99,7 @@ class Image(BaseModel):
99
version_timestamp: str
100
category: str
101
stable: bool
102
- deprecated: bool | None
+ deprecated: bool
103
stars: int
104
tags: list[Tag]
105
architectures: list[Architecture]
root/app/updater.py
@@ -152,7 +152,7 @@ def get_image(repo):
152
if "Internal" in categories:
153
return None
154
tags, stable = get_tags(readme_vars)
155
- deprecated = readme_vars.get("project_deprecation_status", None)
+ deprecated = readme_vars.get("project_deprecation_status", False)
156
version, version_timestamp = gh.get_last_stable_release(repo)
157
config = Config(
158
application_setup=f"{repo.html_url}?tab=readme-ov-file#application-setup",
0 commit comments