Skip to content

Commit

Permalink
fix git.py formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
basokant committed Apr 19, 2023
1 parent 45e2460 commit fd42cd6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jupyterlab_git/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,11 @@ def call_subprocess(
if is_binary == False:
return (process.returncode, output.decode("utf-8"), error.decode("utf-8"))
else:
return (process.returncode, base64.encodebytes(output).decode("ascii"), error.decode("utf-8"))
return (
process.returncode,
base64.encodebytes(output).decode("ascii"),
error.decode("utf-8"),
)

try:
await execution_lock.acquire(
Expand Down

0 comments on commit fd42cd6

Please sign in to comment.