From 248ad822e2a649d20582631029e788fb09f05070 Mon Sep 17 00:00:00 2001 From: Pratik Anurag Date: Tue, 15 Oct 2019 19:56:17 +0530 Subject: =?UTF-8?q?removed=20Unnecessary=20=E2=80=9Celse=E2=80=9D=20after?= =?UTF-8?q?=20=E2=80=9Creturn=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- git/remote.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/git/remote.py b/git/remote.py index e7b3579b..23337a9c 100644 --- a/git/remote.py +++ b/git/remote.py @@ -75,8 +75,7 @@ def to_progress_instance(progress): return RemoteProgress() # assume its the old API with an instance of RemoteProgress. - else: - return progress + return progress class PushInfo(object): -- cgit v1.2.1