Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Mar 19, 2024
1 parent 5547ff9 commit 343b1b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/fetch_nightly_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@ def get_latest_commit(
text["packages"][package]["require"] = line + original
print(f"text is {text['packages'][package]['require']}")
continue
elif package in text_extra["packages"] and "require" in text_extra["packages"][package]:
elif (
package in text_extra["packages"]
and "require" in text_extra["packages"][package]
):
original = text_extra["packages"][package]["require"]
text_extra["packages"][package]["require"] = line + original
print(f"text_extra is {text_extra['packages'][package]['require']}")
Expand Down

0 comments on commit 343b1b2

Please sign in to comment.