1
0
forked from VimPlug/jedi

Fix remaining tests

This commit is contained in:
Dave Halter
2020-01-22 00:36:30 +01:00
parent 6df755e8b6
commit 9d7858eb3a
3 changed files with 12 additions and 5 deletions

View File

@@ -266,8 +266,8 @@ def get_module_contexts_containing_name(inference_state, module_contexts, name,
if m is not None:
parsed_file_count += 1
yield m
if parsed_file_count > parse_limit:
if parsed_file_count >= parse_limit:
break
if file_io_count > open_limit:
if file_io_count >= open_limit:
break