Skip to content

Commit

Permalink
Fix Monique noitced in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
IanCa committed Oct 16, 2023
1 parent 9afb7b6 commit 05aec79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hed/tools/remodeling/operations/remove_columns_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion hed/tools/remodeling/operations/rename_columns_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down

0 comments on commit 05aec79

Please sign in to comment.