Drop unused member

I'm not sure where this was used in the past, however it appears
to be unused now. Removing this simplifies a change I'm about to
make to _InferenceStateProcess.
This commit is contained in:
Peter Law
2024-06-30 15:40:33 +01:00
parent a0527a5af5
commit fff6e0ce2e

View File

@@ -284,9 +284,6 @@ class CompiledSubprocess:
class Listener: class Listener:
def __init__(self): def __init__(self):
self._inference_states = {} self._inference_states = {}
# TODO refactor so we don't need to process anymore just handle
# controlling.
self._process = _InferenceStateProcess(Listener)
def _get_inference_state(self, function, inference_state_id): def _get_inference_state(self, function, inference_state_id):
from jedi.inference import InferenceState from jedi.inference import InferenceState