[IFT] Cleanup and fix hardcoded strings warnings

GitOrigin-RevId: b48d46bdcdc083105d6fe8b57faaa6ea46f4ffe2
This commit is contained in:
Alexey Merkulov
2023-02-28 21:03:15 +01:00
committed by intellij-monorepo-bot
parent 4ead1ae2c9
commit f9e2be3b62
3 changed files with 3 additions and 14 deletions

View File

@@ -64,6 +64,7 @@ object PythonLessonsUtil {
}
val usedInterpreter = project.pythonSdk?.versionString ?: "none"
@Suppress("HardCodedStringLiteral", "DialogTitleCapitalization") // a very strange warning report here
val startInterpreter = if (usedInterpreterAtStart == usedInterpreter) "same" else usedInterpreterAtStart
primaryLanguage.onboardingFeedbackData = object : OnboardingFeedbackData(reportTitle, lessonEndInfo) {