Skip to content

Commit

Permalink
style: format code with Black and isort
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 5ea9d34 according to the output
from Black and isort.

Details: NelsonDane#165
  • Loading branch information
deepsource-autofix[bot] authored and MaxxRK committed Aug 15, 2024
1 parent 3d8effb commit 2038854
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion helperAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,11 @@ def check_package_versions():
.strip()
)
installed_hash = subprocess.run(
["git", "rev-parse", "HEAD"], capture_output=True, cwd=epl, text=True, check=True
["git", "rev-parse", "HEAD"],
capture_output=True,
cwd=epl,
text=True,
check=True,
)
installed_hash = installed_hash.stdout.strip()
if installed_hash != required_version:
Expand Down

0 comments on commit 2038854

Please sign in to comment.