From 29aefee390e606b4eaad59708519d6b557431713 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Wed, 23 Aug 2023 08:37:43 +1000 Subject: [PATCH] remove irrelevant comment --- Flow.Launcher.Core/Plugin/PythonPlugin.cs | 1 - Flow.Launcher.Core/Plugin/PythonPluginV2.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/PythonPlugin.cs b/Flow.Launcher.Core/Plugin/PythonPlugin.cs index d5258565e..536e69b3d 100644 --- a/Flow.Launcher.Core/Plugin/PythonPlugin.cs +++ b/Flow.Launcher.Core/Plugin/PythonPlugin.cs @@ -23,7 +23,6 @@ namespace Flow.Launcher.Core.Plugin RedirectStandardError = true, }; - // temp fix for issue #667 var path = Path.Combine(Constant.ProgramDirectory, JsonRPC); _startInfo.EnvironmentVariables["PYTHONPATH"] = path; diff --git a/Flow.Launcher.Core/Plugin/PythonPluginV2.cs b/Flow.Launcher.Core/Plugin/PythonPluginV2.cs index 09c1a069a..842dc5cad 100644 --- a/Flow.Launcher.Core/Plugin/PythonPluginV2.cs +++ b/Flow.Launcher.Core/Plugin/PythonPluginV2.cs @@ -35,7 +35,6 @@ namespace Flow.Launcher.Core.Plugin RedirectStandardInput = true }; - // temp fix for issue #667 var path = Path.Combine(Constant.ProgramDirectory, JsonRpc); StartInfo.EnvironmentVariables["PYTHONPATH"] = path;