Move arguments to a separate module.

This commit is contained in:
Dave Halter
2017-10-01 13:29:28 +02:00
parent b6bb251c96
commit 0762c9218c
13 changed files with 276 additions and 268 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ class Context(BaseContext):
"""
Execute a function with already executed arguments.
"""
from jedi.evaluate.param import ValuesArguments
from jedi.evaluate.arguments import ValuesArguments
arguments = ValuesArguments([ContextSet(value) for value in value_list])
return self.execute(arguments)