mirror of https://github.com/zulip/zulip.git
9 lines
96 B
Python
9 lines
96 B
Python
|
from typing import TypeVar
|
||
|
|
||
|
|
||
|
T = TypeVar("T")
|
||
|
|
||
|
|
||
|
def mark_sanitized(arg: T) -> T:
|
||
|
return arg
|