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