Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed Unnecessary “else” after “return”
  • Loading branch information
pratik-anurag authored Oct 15, 2019
commit c28178ac87cb588f676dfb77285d1fe9f05d6cf8
3 changes: 1 addition & 2 deletions git/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,7 @@ def string_decode(v):

if PY3:
return v.encode(defenc).decode('unicode_escape')
else:
return v.decode('string_escape')
return v.decode('string_escape')
# end
# end

Expand Down