Explorer
/proc/21/root/usr/local/lib/python3.12/dist-packages/_pytest/assertion/highlight.py
← Zurück ↓ Download
from __future__ import annotations

from typing import Literal


def dummy_highlighter(source: str, lexer: Literal["diff", "python"] = "python") -> str:
    """Dummy highlighter that returns the text unprocessed.

    Needed for _notin_text, as the diff gets post-processed to only show the "+" part.
    """
    return source