dataframe icon indicating copy to clipboard operation
dataframe copied to clipboard

Jupyter codegen: attempt to inherit from data class

Open nikitinas opened this issue 3 years ago • 0 comments

@DataSchema
data class A(val a: Int)
val df = dataFrameOf("a", "b")(1,2)

Error compiling code:

@DataSchema(isOpen = false)
interface _DataFrameType : A

An interface cannot inherit from a class

nikitinas avatar Oct 13 '22 23:10 nikitinas