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 b5a4a3c commit a33ee00Copy full SHA for a33ee00
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/io/html.kt
@@ -761,7 +761,7 @@ public class DataFrameHtmlData(
761
)
762
763
public fun writeHtml(destination: File) {
764
- writeHtml(destination.toPath())
+ destination.writeText(toString())
765
}
766
767
public fun writeHtml(destination: String) {
@@ -774,7 +774,7 @@ public class DataFrameHtmlData(
774
775
@Deprecated(WRITE_HTML, ReplaceWith(WRITE_HTML_REPLACE), DeprecationLevel.ERROR)
776
public fun writeHTML(destination: File) {
777
778
779
780
0 commit comments