Skip to content

Commit

Permalink
Apply style suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Ken Odegard <[email protected]>
  • Loading branch information
mbargull and kenodegard committed Jan 26, 2024
1 parent 155c156 commit e98e96d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conda_build/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def execute_download_actions(m, actions, env, package_subset=None, require_files

# this should be just downloading packages. We don't need to extract them -

# NOTE: The following out-commented execute_actions was defunct
# NOTE: The following commented execute_actions is defunct
# (FETCH/EXTRACT were replaced by PROGRESSIVEFETCHEXTRACT).
#
# download_actions = {
Expand Down
2 changes: 1 addition & 1 deletion conda_build/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2199,4 +2199,4 @@ def samefile(path1: Path, path2: Path) -> bool:


def package_record_to_requirement(prec: PackageRecord) -> str:
return " ".join((prec.name, prec.version, prec.build)).rstrip()
return f"{prec.name} {prec.version} {prec.build}".rstrip()

0 comments on commit e98e96d

Please sign in to comment.