navigate.model.features.feature_related_functions.convert_str_to_feature_list
- navigate.model.features.feature_related_functions.convert_str_to_feature_list(content: str) → Optional[Union[list, str]]
Convert string to a feature list
- Parameters:
content (str) – A string value that represents a feature list.
- Returns:
feature_list –
List : If the string value can be converted to a valid feature list
None : If the string value cannot be converted to a valid feature list
”break” : If the string value is “break”
”continue” : If the string value is “continue”
- Return type:
Union[list, str, None]