Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit277be84

Browse files
davvidempty
authored andcommitted
style: follow PEP 8 in git/cmd.py
Keyword args shouldn't use spaces around the equals signper PEP 8.Signed-off-by: David Aguilar <davvid@gmail.com>
1 parentb919010 commit277be84

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

‎lib/git/cmd.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ def get_dir(self):
5151
returnself.git_dir
5252

5353
defexecute(self,command,
54-
istream=None,
55-
with_status=False,
56-
with_stderr=False,
57-
with_exceptions=False,
58-
with_raw_output=False,
54+
istream=None,
55+
with_status=False,
56+
with_stderr=False,
57+
with_exceptions=False,
58+
with_raw_output=False,
5959
):
6060
"""
6161
Handles executing the command on the shell and consumes and returns
@@ -96,10 +96,10 @@ def execute(self, command,
9696

9797
# Start the process
9898
proc=subprocess.Popen(command,
99-
cwd=self.git_dir,
100-
stdin=istream,
101-
stderr=stderr,
102-
stdout=subprocess.PIPE
99+
cwd=self.git_dir,
100+
stdin=istream,
101+
stderr=stderr,
102+
stdout=subprocess.PIPE
103103
)
104104

105105
# Wait for the process to return

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp