diff --git a/ingestion/src/metadata/utils/column_helpers.py b/ingestion/src/metadata/utils/column_helpers.py index d57947680ee..c6b7b957d67 100644 --- a/ingestion/src/metadata/utils/column_helpers.py +++ b/ingestion/src/metadata/utils/column_helpers.py @@ -243,7 +243,7 @@ def _handle_complex_data_types(status, dataset_name, raw_type: str, level=0): col["dataType"] = get_column_type( status, dataset_name, - re.match("([\w\s]*)(?:.*)", col_type).groups()[0], + re.match(r"([\w\s]*)(?:.*)", col_type).groups()[0], ) col["dataTypeDisplay"] = col_type.rstrip(">") return col