Skip to content

Commit

Permalink
Updated comment in the standardize list function
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclynbeck-sage committed Nov 22, 2024
1 parent 3a60655 commit ce9dc5e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,10 @@ def standardize_list_item(item: Union[str, List[str]]) -> List[str]:
column.
Args:
item: either a list of strings, a list of lists of strings, or np.NaN
item: either a string, a list of strings, or np.NaN
Returns:
A single-level list of strings, which may be empty. The list is sorted alphabetically.
A list of strings or an empty list. The list is sorted alphabetically.
"""
# Convert NaN to an empty list
if item is np.NaN:
Expand Down

0 comments on commit ce9dc5e

Please sign in to comment.