Skip to content

Commit 6a561db

Browse files
Lint git.py file with black.
1 parent 88a73f4 commit 6a561db

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jupyterlab_git/git.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,9 @@ async def status(self, path: str) -> dict:
491491
Execute git status command & return the result.
492492
"""
493493
cmd = ["git", "status", "--porcelain", "-b", "-u", "-z"]
494-
code, status, my_error = await self.__execute(cmd, cwd=path, env=os.environ.copy())
494+
code, status, my_error = await self.__execute(
495+
cmd, cwd=path, env=os.environ.copy()
496+
)
495497

496498
if code != 0:
497499
return {

0 commit comments

Comments
 (0)