Skip to content

Commit

Permalink
Fix column drop for all tools
Browse files Browse the repository at this point in the history
  • Loading branch information
bebatut committed Jul 8, 2024
1 parent 757304c commit 94f78b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/create_interactive_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ def generate_table(
if "To keep" in df.columns:
df["To keep"] = df["To keep"].replace("", True)
df = df.query("`To keep`")

df = df.drop(COLUMNS_TO_DROP, axis=1)
df = df.drop(COLUMNS_TO_DROP, axis=1)

# df = df.loc[:, COLUMNS].reindex(columns=COLUMNS)
table = df.to_html(border=0, table_id="dataframe", classes=["display", "nowrap"], index=False)
Expand Down

0 comments on commit 94f78b2

Please sign in to comment.