File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -85,9 +85,8 @@ def run_debug(output_format="console"):
8585 ),
8686 "python_version_full" : sys .version ,
8787 "python_version" : f"{ sys .version_info .major } .{ sys .version_info .minor } .{ sys .version_info .micro } " ,
88- "python_hash_info" : str (
89- sys .hash_info
90- ), # cast to str as repr is most useful https://github.com/rapidsai/rapids-cli/pull/127#discussion_r2397926022
88+ # cast sys.hash_info to str as repr is most useful https://github.com/rapidsai/rapids-cli/pull/127#discussion_r2397926022
89+ "python_hash_info" : str (sys .hash_info ),
9190 "package_versions" : gather_package_versions (),
9291 "pip_packages" : gather_command_output (["pip" , "freeze" ], "Pip not installed" ),
9392 "conda_packages" : gather_command_output (
You can’t perform that action at this time.
0 commit comments