Skip to content

Commit

Permalink
Pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmahom5 committed Aug 28, 2023
1 parent d2afbd8 commit 012a1ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mridle/extras/datasets/pandas_styler.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import fsspec
import numpy as np
from matplotlib.pyplot import plot as plt
import matplotlib.pyplot as plt

from typing import Any, Dict

Expand Down Expand Up @@ -42,8 +42,8 @@ def _save(self, data) -> None:
# using get_filepath_str ensures that the protocol and path are appended correctly for different filesystems
save_path = get_filepath_str(self._get_save_path(), self._protocol)
df = data.data # Extract the DataFrame from the styler
#df_html = df.to_html(index=False) # Convert DataFrame to HTML
#with open(save_path, "w") as f:
# df_html = df.to_html(index=False) # Convert DataFrame to HTML
# with open(save_path, "w") as f:
# f.write(df_html)

df = data.data # Extract the DataFrame from the styler
Expand Down

0 comments on commit 012a1ed

Please sign in to comment.