clean-code-ml
clean-code-ml copied to clipboard
Correct type hint @ split_into_first_and_last_name
The return type hint for the refactored function split_into_first_and_last_name mistakenly is set to None, which instead should be either "list" or "List[str]."