From 05aec79ecc82743ae8f7f7b72b1d93c12063dde6 Mon Sep 17 00:00:00 2001 From: IanCa Date: Mon, 16 Oct 2023 16:36:12 -0500 Subject: [PATCH] Fix Monique noitced in documentation --- hed/tools/remodeling/operations/remove_columns_op.py | 4 ++-- hed/tools/remodeling/operations/rename_columns_op.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hed/tools/remodeling/operations/remove_columns_op.py b/hed/tools/remodeling/operations/remove_columns_op.py index 267a7039..6901b6ce 100644 --- a/hed/tools/remodeling/operations/remove_columns_op.py +++ b/hed/tools/remodeling/operations/remove_columns_op.py @@ -6,8 +6,8 @@ class RemoveColumnsOp(BaseOp): """ Remove columns from a tabular file. Required remodeling parameters: - - **remove_names** (*list*): The names of the columns to be removed. - - **ignore_missing** (*boolean*): If true, names in remove_names that are not columns in df should be ignored. + - **column_names** (*list*): The names of the columns to be removed. + - **ignore_missing** (*boolean*): If true, names in column_names that are not columns in df should be ignored. """ diff --git a/hed/tools/remodeling/operations/rename_columns_op.py b/hed/tools/remodeling/operations/rename_columns_op.py index 2a2f275a..0a3329b0 100644 --- a/hed/tools/remodeling/operations/rename_columns_op.py +++ b/hed/tools/remodeling/operations/rename_columns_op.py @@ -8,7 +8,7 @@ class RenameColumnsOp (BaseOp): Required remodeling parameters: - **column_mapping** (*dict*): The names of the columns to be removed. - - **ignore_missing** (*bool*): If true, the names in remove_names that are not columns and should be ignored. + - **ignore_missing** (*bool*): If true, the names in column_mapping that are not columns and should be ignored. """