Skip to content

Commit

Permalink
fix: marimo component encoding (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
longxiaofei authored Oct 29, 2024
1 parent de6f46a commit d0d9acd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pygwalker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from pygwalker.services.global_var import GlobalVarManager
from pygwalker.services.kaggle import show_tips_user_kaggle as __show_tips_user_kaggle

__version__ = "0.4.9.11"
__version__ = "0.4.9.12"
__hash__ = __rand_str()

from pygwalker.api.jupyter import walk, render, table
Expand Down
2 changes: 1 addition & 1 deletion pygwalker/api/marimo.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

class _WalkerWidget(anywidget.AnyWidget):
"""WalkerWidget"""
_esm = (pathlib.Path(__file__).parent.parent / "templates" / "dist" / "pygwalker-app.es.js").read_text()
_esm = (pathlib.Path(__file__).parent.parent / "templates" / "dist" / "pygwalker-app.es.js").read_text(encoding="utf-8")
props = traitlets.Unicode("").tag(sync=True)


Expand Down

0 comments on commit d0d9acd

Please sign in to comment.