zulip/zerver/lib/pysa.py

8 lines
95 B
Python

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