Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Aug 26, 2024
1 parent 630c804 commit 6f74663
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hoomd_validation/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
def _get_cluster_name():
"""Get the current cluster name."""
result = subprocess.run(
['row', 'show', 'cluster', '--short'], capture_output=True, check=True, text=True
['row', 'show', 'cluster', '--short'],
capture_output=True,
check=True,
text=True,
)
return result.stdout.strip()

Expand Down

0 comments on commit 6f74663

Please sign in to comment.