Skip to content

Commit 9b10d5e

Browse files
committed
chore(flake8): unnused import
1 parent b145de3 commit 9b10d5e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

git/remote.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ def fetch(self, refspec=None, progress=None, **kwargs):
650650
else:
651651
args = [refspec]
652652

653-
proc = self.repo.git.fetch(self, *args, with_extended_output=True, as_process=True, with_stdout=True, v=True,
653+
proc = self.repo.git.fetch(self, *args, with_extended_output=True, as_process=True, with_stdout=False, v=True,
654654
**kwargs)
655655
res = self._get_fetch_info_from_stderr(proc, progress or RemoteProgress())
656656
if hasattr(self.repo.odb, 'update_cache'):

git/test/test_repo.py

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
from git.util import join_path_native
3636
from git.exc import (
3737
BadObject,
38-
WorkTreeRepositoryUnsupported
3938
)
4039
from gitdb.util import bin_to_hex
4140
from git.compat import string_types

0 commit comments

Comments
 (0)