Skip to content

Commit

Permalink
bugfix update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelduranfrigola committed Jun 20, 2023
1 parent cc692a7 commit 687e28b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ersilia/hub/content/card.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,9 +539,9 @@ def write_information(self, data: BaseInformation, readme_path=None):
)
text += "## Ersilia model URLs\n"
text += "* [GitHub]({0})\n".format(data.github)
if d["S3"] in d:
if "S3" in d:
text += "* [AWS S3]({0})\n".format(d["S3"])
if d["DockerHub"] in d:
if "DockerHub" in d:
text += "* [DockerHub]({0}) ({1})\n".format(
d["DockerHub"], ", ".join(d["Docker Architecture"])
)
Expand Down

0 comments on commit 687e28b

Please sign in to comment.