Skip to content

Commit

Permalink
try fix table_object issue
Browse files Browse the repository at this point in the history
  • Loading branch information
WangHong007 committed Jan 20, 2024
1 parent bde58f5 commit 8d019ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pmultiqc/modules/quantms/sparklines.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def plot(data, headers=None, pconfig=None, maxValue=0.0):
for k, v in config.custom_plot_config[pconfig["id"]].items():
pconfig[k] = v

# Make a datatable object
dt = table_object.datatable(data, headers, pconfig)
# Make a DataTable object
dt = table_object.DataTable(data, headers, pconfig)

# Collect unique sample names
s_names = set()
Expand Down

0 comments on commit 8d019ed

Please sign in to comment.