Skip to content

Commit 9a57b41

Browse files
committed
Fix typo
1 parent 44e6c86 commit 9a57b41

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

root/app/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class EnvVar(BaseModel):
4242
class Custom(BaseModel):
4343
name: str
4444
name_compose: str
45-
value: str
45+
value: str | list[str]
4646
desc: str
4747
optional: bool
4848

root/app/updater.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ def get_mac_address(readme_vars):
142142
return MacAddress(mac_address=hostname, desc=readme_vars.get("param_mac_address_desc", ""), optional=optional)
143143

144144
def get_image(repo):
145+
print(f"Processing {repo.name}")
145146
if not repo.name.startswith("docker-") or repo.name.startswith("docker-baseimage-"):
146147
return None
147148
readme_vars = gh.get_readme_vars(repo)

0 commit comments

Comments
 (0)