Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
LeiGlobus committed Oct 9, 2024
1 parent 7aaa2ee commit db64f91
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion compute_sdk/globus_compute_sdk/sdk/diagnostic.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,11 @@ def print_highlight(s: str):

def os_info_cmd():
if sys.platform == "linux":
return cat(["/proc/version",])
return cat(
[
"/proc/version",
]
)
elif sys.platform == "darwin":
return "sw_vers"
elif sys.platform == "win32":
Expand Down

0 comments on commit db64f91

Please sign in to comment.