Merge pull request #21 from microsoft/removePythonDependency

Remove python dependency in Wox code
This commit is contained in:
Alekhya
2020-03-25 16:30:10 -07:00
committed by GitHub
27 changed files with 3 additions and 182 deletions

View File

@@ -2,11 +2,6 @@
{
public static class AllowedLanguage
{
public static string Python
{
get { return "PYTHON"; }
}
public static string CSharp
{
get { return "CSHARP"; }
@@ -19,8 +14,7 @@
public static bool IsAllowed(string language)
{
return language.ToUpper() == Python.ToUpper()
|| language.ToUpper() == CSharp.ToUpper()
return language.ToUpper() == CSharp.ToUpper()
|| language.ToUpper() == Executable.ToUpper();
}
}