1
0
forked from VimPlug/jedi

Remove redundant parentheses

This commit is contained in:
Hugo
2018-01-04 16:32:52 +02:00
parent a7ac647498
commit 8cf708d0d4
41 changed files with 112 additions and 112 deletions

View File

@@ -432,7 +432,7 @@ def dotted_from_fs_path(fs_path, sys_path):
# C:\path\to\Lib
path = ''
for s in sys_path:
if (fs_path.startswith(s) and len(path) < len(s)):
if fs_path.startswith(s) and len(path) < len(s):
path = s
# - Window