mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 05:54:25 +08:00
Fix a minor issue
This commit is contained in:
@@ -65,7 +65,8 @@ 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:
|
||||
if int(match.group(1)) == '3' and int(match.group(2)) <= version_info.minor:
|
||||
print(match)
|
||||
if match.group(1) == '3' and int(match.group(2)) <= version_info.minor:
|
||||
check_version_list.append(base_list_entry)
|
||||
|
||||
for check_version in check_version_list:
|
||||
|
||||
Reference in New Issue
Block a user