You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems this issue can be simply fixed by searching for the package programitcally rather than searching for the macro.
This would be the expected behaviour for this package as this will allow it to be used in a variety of editors (allowing for support for julia REPL, as well as notebooks like Pluto).
The text was updated successfully, but these errors were encountered:
The issue seems to be raised as Pluto imports Modules in a way BSON’s macro is not expecting.
This results in the BSON.load function failing if @module is not specified.
I.E:
This fails:
BSON.load("dataframe.BSON")
and this fails:
@load("dataframe.BSON") data_frame
but this seems to be working:
BSON.load("dataframe.BSON", @module)
the failing stack trace is:
It seems this issue can be simply fixed by searching for the package programitcally rather than searching for the macro.
This would be the expected behaviour for this package as this will allow it to be used in a variety of editors (allowing for support for julia REPL, as well as notebooks like Pluto).
The text was updated successfully, but these errors were encountered: