Skip to content

Commit

Permalink
fix text list
Browse files Browse the repository at this point in the history
  • Loading branch information
rugeli committed Jul 22, 2024
1 parent 1aca24b commit c709c7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cellpack/autopack/writers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def add_table(self, header, table, text_align="center"):
self.report_md.new_table(
columns=table.shape[1],
rows=table.shape[0],
text=self.text_list,
text=text_list,
text_align=text_align,
)

Expand All @@ -493,7 +493,7 @@ def add_table_from_csv(self, header, filepath, text_align="center"):
self.report_md.new_table(
columns=table.shape[1],
rows=table.shape[0],
text=self.text_list,
text=text_list,
text_align=text_align,
)

Expand Down

0 comments on commit c709c7f

Please sign in to comment.