Skip to content

Commit

Permalink
Fixed rebasing conflitcts
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Moene <[email protected]>
  • Loading branch information
victormlg committed Dec 12, 2024
1 parent b510048 commit e43cd24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cf_remote/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def _iterate_over_packages(tags=None, version=None, edition=None, download=False
else:
for artifact in artifacts:
if download:
package_path= download_package(artifact.url, directory=output_dir, checksum=artifact.checksum)
package_path= download_package(artifact.url, checksum=artifact.checksum)
if output_dir :
output_dir = os.path.normpath(output_dir)
parent = os.path.dirname(output_dir)
Expand Down
2 changes: 1 addition & 1 deletion cf_remote/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_json(url):
return data


def download_package(url, path=None, directory=None, checksum=None):
def download_package(url, path=None, checksum=None):


if checksum and not SHA256_RE.match(checksum):
Expand Down

0 comments on commit e43cd24

Please sign in to comment.