Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: paulzierep <[email protected]>
  • Loading branch information
bebatut and paulzierep authored Jul 10, 2024
1 parent 3c14d76 commit 522d1cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/create_interactive_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def filter_table(df: pd.DataFrame, filter_col: list, remove_col: list) -> pd.Dat
Filter table by values and columns
:param df: dataframe to filter
:param filter_col: list of columns used to filer
:param filter_col: list of columns used to filter
:param remove_col: list of columns to remove from table
"""
for col in filter_col:
Expand Down Expand Up @@ -93,7 +93,7 @@ def export_html_table(html_table: str, output_fp: str) -> None:
"-f",
action="append",
default=[],
help="Name of columns used to filter row (must contain boolean values)",
help="Name of columns used to filter the rows (must contain boolean values). Only rows with True in this column will be used.",
)
parser.add_argument(
"--template",
Expand Down
2 changes: 1 addition & 1 deletion bin/extract_all_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ then
fi
fi
else
echo "Tool extraction";
echo "Tool extraction"
python bin/extract_galaxy_tools.py \
extract \
--api $GITHUB_API_KEY \
Expand Down

0 comments on commit 522d1cb

Please sign in to comment.