Skip to content

Commit a7f403b

Browse files
committed
fix flake8 found problems
1 parent e0eafc4 commit a7f403b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Diff for: git/cmd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def execute(self, command,
614614
cwd=cwd,
615615
bufsize=-1,
616616
stdin=istream,
617-
stderr=PIPE,
617+
stderr=PIPE,
618618
stdout=PIPE if with_stdout else open(os.devnull, 'wb'),
619619
shell=self.USE_SHELL,
620620
close_fds=(os.name == 'posix'), # unsupported on windows

Diff for: git/remote.py

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import re
99
import os
1010

11-
from .exc import GitCommandError
1211
from .config import (
1312
SectionConstraint,
1413
cp,

0 commit comments

Comments
 (0)