We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d26d257 commit 72264adCopy full SHA for 72264ad
utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt
@@ -193,7 +193,7 @@ class PythonCodeGenerator(
193
}
194
195
val functionPrefix = "__mypy_check"
196
- val functionName = "def ${functionPrefix}_{method.name}(${parameters.joinToString(", ")}):" // TODO: in future can be "async def"
+ val functionName = "def ${functionPrefix}_${method.name}(${parameters.joinToString(", ")}):" // TODO: in future can be "async def"
197
198
val mypyCheckCode = listOf(
199
renderer.toString(),
0 commit comments