Skip to content

Commit 84935e3

Browse files
author
Ruinong Tian
committed
fix code style
1 parent fd09bf0 commit 84935e3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ def pull_conda_package_metadata(image_config, image_artifact_dir):
110110
package_metadata = json.loads(search_result[0])[package][0]
111111
results[package] = {"version": package_metadata["version"], "size": package_metadata["size"]}
112112
except PackagesNotFoundError:
113-
print(f"Failed to pull package metadata for {package}, {match_spec_out} from conda-forge, ignore. Potentially this package is broken.")
113+
print(
114+
f"Failed to pull package metadata for {package}, {match_spec_out} from conda-forge, ignore. Potentially this package is broken."
115+
)
114116
# Sort the pakcage sizes in decreasing order
115117
results = {k: v for k, v in sorted(results.items(), key=lambda item: item[1]["size"], reverse=True)}
116118

0 commit comments

Comments
 (0)