Skip to content

Commit f1fbbfa

Browse files
committed
🐛 Fix: remove unnecesary indentation
1 parent 3ba3bd3 commit f1fbbfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vuegen/quarto_reportview.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -770,10 +770,10 @@ def _show_dataframe(
770770
if is_report_static:
771771
# Generate path for the DataFrame image
772772
df_image = os.path.join(
773-
static_dir, f"{dataframe.title.replace(' ', '_')}.png"
773+
static_dir, f"{dataframe.title.replace(' ', '_')}.png"
774774
)
775775
dataframe_content.append(
776-
f"df.dfi.export('{os.path.abspath(df_image)}', max_rows=10, max_cols=5)\n```\n"
776+
f"df.dfi.export('{os.path.abspath(df_image)}', max_rows=10, max_cols=5)\n```\n"
777777
)
778778
# Use helper method to add centered image content
779779
dataframe_content.append(self._generate_image_content(df_image))

0 commit comments

Comments
 (0)