1
0
forked from VimPlug/jedi

Remove an unnecessary print

This commit is contained in:
Dave Halter
2020-07-02 03:35:24 +02:00
parent 0790f376ca
commit 46154a3ee7

View File

@@ -65,7 +65,6 @@ def _get_typeshed_directories(version_info):
for base_list_entry in base_list:
match = re.match(r'(\d+)\.(\d+)$', base_list_entry)
if match is not None:
print(match)
if match.group(1) == '3' and int(match.group(2)) <= version_info.minor:
check_version_list.append(base_list_entry)