From 263989c0ab2ba086c7dca954c77477b118d187e2 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Wed, 17 Jan 2018 19:12:58 +0100 Subject: [PATCH] Add a comment about why the project is None in the subprocess --- jedi/evaluate/compiled/subprocess/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jedi/evaluate/compiled/subprocess/__init__.py b/jedi/evaluate/compiled/subprocess/__init__.py index 4b7d16a6..55f3bacc 100644 --- a/jedi/evaluate/compiled/subprocess/__init__.py +++ b/jedi/evaluate/compiled/subprocess/__init__.py @@ -234,6 +234,8 @@ class Listener(object): except KeyError: from jedi.api.environment import InterpreterEnvironment evaluator = Evaluator( + # The project is not actually needed. Nothing should need to + # access it. project=None, environment=InterpreterEnvironment() )