Skip to content

Commit

Permalink
parse known ars only (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
sahakiann authored Dec 18, 2024
1 parent 938c585 commit 9e78cae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/add_public_cloud_reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ def get_args() -> argparse.Namespace:
help="The path to the bra-mem tar file README file"
)

return parser.parse_args()
known_args, _ = parser.parse_known_args()
return known_args


if __name__ == '__main__':
Expand Down

0 comments on commit 9e78cae

Please # to comment.