Skip to content

Commit b2a5f2b

Browse files
[Andrew Polyakov] Refactor imports
1 parent 3334df0 commit b2a5f2b

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,16 @@ import org.utbot.python.framework.api.python.util.pythonDictClassId
2222
import org.utbot.python.framework.api.python.util.pythonListClassId
2323
import org.utbot.python.framework.api.python.util.pythonNoneClassId
2424
import org.utbot.python.framework.codegen.PythonCgLanguageAssistant
25-
import org.utbot.python.framework.codegen.model.tree.*
25+
import org.utbot.python.framework.codegen.model.tree.CgPythonDict
26+
import org.utbot.python.framework.codegen.model.tree.CgPythonIndex
27+
import org.utbot.python.framework.codegen.model.tree.CgPythonIterator
28+
import org.utbot.python.framework.codegen.model.tree.CgPythonList
29+
import org.utbot.python.framework.codegen.model.tree.CgPythonNdarray
30+
import org.utbot.python.framework.codegen.model.tree.CgPythonRepr
31+
import org.utbot.python.framework.codegen.model.tree.CgPythonSet
32+
import org.utbot.python.framework.codegen.model.tree.CgPythonTree
33+
import org.utbot.python.framework.codegen.model.tree.CgPythonTuple
34+
2635

2736
class PythonCgVariableConstructor(cgContext: CgContext) : CgVariableConstructor(cgContext) {
2837
private val nameGenerator = CgComponents.getNameGeneratorBy(context)
@@ -194,8 +203,6 @@ class PythonCgVariableConstructor(cgContext: CgContext) : CgVariableConstructor(
194203
return Pair(obj, context.currentBlock.toList())
195204
}
196205

197-
198-
// TODO: NDArray
199206
else -> {
200207
throw UnsupportedOperationException()
201208
}

0 commit comments

Comments
 (0)