-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Miscellaneous 0.15 fixes #989
Conversation
… with new experimental module
@@ -152,6 +156,15 @@ internal class Integration(private val notebook: Notebook, private val options: | |||
|
|||
override fun Builder.onLoaded() { | |||
if (version != null) { | |||
if (enableExperimentalCsv?.toBoolean() == true) { | |||
println("Enabling experimental CSV module: dataframe-csv") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want to keep this println? It can't be disabled on user end
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's good to have it, a good check for the user that the dataframe integration received the special command correctly and activated the dataframe-csv module.
It's also good to see it in the output of the notebook, to see something experimental is going on, like a small warning.
When the module is included by default I'll remove the message of course
all need to be cherry-picked to the 0.15.0 release branch