1
0
forked from VimPlug/jedi

move some imports around

This commit is contained in:
Dave Halter
2013-12-30 01:49:01 +01:00
parent 7b936cf6ec
commit 6ece1de22d
2 changed files with 5 additions and 4 deletions

View File

@@ -59,6 +59,7 @@ from jedi import modules
from jedi import settings
from jedi.parser import fast as fast_parser
from jedi.evaluate.cache import memoize_default
from jedi.evaluate import iterable
# This is something like the sys.path, but only for searching params. It means
# that this is the order in which Jedi searches params.
@@ -294,7 +295,6 @@ def check_flow_information(evaluator, flow, search_name, pos):
def _check_isinstance_type(evaluator, stmt, search_name):
from jedi.evaluate import iterable
try:
expression_list = stmt.expression_list()
# this might be removed if we analyze and, etc