mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +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:
|
for base_list_entry in base_list:
|
||||||
match = re.match(r'(\d+)\.(\d+)$', base_list_entry)
|
match = re.match(r'(\d+)\.(\d+)$', base_list_entry)
|
||||||
if match is not None:
|
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)
|
check_version_list.append(base_list_entry)
|
||||||
|
|
||||||
for check_version in check_version_list:
|
for check_version in check_version_list:
|
||||||
|
|||||||
Reference in New Issue
Block a user