zulip/zerver/lib/pysa.py

9 lines
96 B
Python

from typing import TypeVar
T = TypeVar("T")
def mark_sanitized(arg: T) -> T:
return arg