Skip to content

Commit

Permalink
Made fetch_plat_map function "private"
Browse files Browse the repository at this point in the history
Co-authored-by: Stephan Steinbach <[email protected]>
Signed-off-by: Eric Reinecke <[email protected]>
  • Loading branch information
reinecke and ssteinbach committed Jun 24, 2024
1 parent 25ade06 commit 32f1261
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maintainers/freeze_ci_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def _parsed_args():
return parser.parse_args()


def fetch_plat_map():
def _fetch_plat_map():
# HACK: pull the image version corresponding to -latest out of the
# README.md for the github repo where they are stored
request = urllib.request.Request(GITHUB_README_URL)
Expand Down Expand Up @@ -111,7 +111,7 @@ def md_row_fields(md_row):
def main():
args = _parsed_args()

plat_map = fetch_plat_map()
plat_map = _fetch_plat_map()

if args.freeze:
freeze_ci(plat_map, args.dryrun)
Expand Down

0 comments on commit 32f1261

Please sign in to comment.