diff --git a/cleanlab_studio/utils/data_enrichment/enrichment_utils.py b/cleanlab_studio/utils/data_enrichment/enrichment_utils.py index eb5e6ce2..db0eada6 100644 --- a/cleanlab_studio/utils/data_enrichment/enrichment_utils.py +++ b/cleanlab_studio/utils/data_enrichment/enrichment_utils.py @@ -57,7 +57,7 @@ def get_regex_match( response: str, regex_list: List[re.Pattern[str]], disable_warnings: bool ) -> Union[str, None]: """Extract the first match from the response using the provided regex patterns. Return first match if multiple exist. - Note: This function assumes the regex patterns each specify exactly 1 group that is the match group using `'()'`.""" + Note: This function assumes the regex patterns each specify exactly 1 group that is the match group using ``'()'``.""" for regex_pattern in regex_list: pattern_match = regex_pattern.match(response) if pattern_match: