Re-use already calculated sdks in guessing language level

Drop `isPythonModule` call since it breaks PyStringLiteralTest.testEscapedUnicodeInLiterals.

GitOrigin-RevId: 6f5ea083a72bdb29826466a50f62cdf84cd26960
This commit is contained in:
Semyon Proshev
2020-08-03 23:41:34 +03:00
committed by intellij-monorepo-bot
parent 4bda118750
commit 3d31f690f3
3 changed files with 20 additions and 46 deletions

View File

@@ -27,8 +27,4 @@ public abstract class PyModuleService {
public boolean isFileIgnored(@NotNull VirtualFile file) {
return false;
}
public boolean isPythonModule(@NotNull Module module) {
return true;
}
}