Merge pull request #1 from anakin87/anakin87-patch-1

Update core.py
This commit is contained in:
anakin87
2020-08-25 15:28:48 +02:00
committed by GitHub
+1 -1
View File
@@ -631,7 +631,7 @@ class Table(object):
"""
html_string = self.df.to_html(**kwargs)
with open(path, "w") as f:
with open(path, "w", encoding="utf-8") as f:
f.write(html_string)
def to_sqlite(self, path, **kwargs):