Skip to content

Commit

Permalink
in update_dependencies don't default sha1 to 'latest'
Browse files Browse the repository at this point in the history
Code expects default to be None
  • Loading branch information
iamsergio committed Jan 5, 2025
1 parent 130a771 commit cbe442c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/update_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def print_dependencies(proj_name, repo_path):
help="Remote branch, defaults to the main branch", required=False)

parser.add_argument('--sha1', metavar='<sha1, tag or branch>',
help="Sha tag or branch, defaults to latest", required=False, default='latest')
help="Sha tag or branch, defaults to latest", required=False)

args = parser.parse_args()

Expand Down

0 comments on commit cbe442c

Please sign in to comment.