diff options
author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 19:49:51 +0530 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 18:47:24 +0200 |
commit | cf1354bb899726e17eaaf1df504c280b3e56f3d0 (patch) | |
tree | 354be0217d8539b043a48b933f480370d427e909 /git/config.py | |
parent | 55146609e2d0b120c5417714a183b3b0b625ea80 (diff) | |
download | gitpython-cf1354bb899726e17eaaf1df504c280b3e56f3d0.tar.gz |
removed Unnecessary “else” after “return”
Diffstat (limited to 'git/config.py')
-rw-r--r-- | git/config.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git/config.py b/git/config.py index b03d9d42..edd5750b 100644 --- a/git/config.py +++ b/git/config.py @@ -339,8 +339,7 @@ class GitConfigParser(with_metaclass(MetaParserBuilder, cp.RawConfigParser, obje if PY3: return v.encode(defenc).decode('unicode_escape') - else: - return v.decode('string_escape') + return v.decode('string_escape') # end # end |