Implement stubs for views.decorators.common.no_append_slash (#743)

This commit is contained in:
Petter Friberg
2021-11-01 16:04:58 +01:00
committed by GitHub
parent 640553dcd7
commit 48aaf3d2ac

View File

@@ -0,0 +1,5 @@
from typing import Any, Callable, TypeVar
_C = TypeVar("_C", bound=Callable[..., Any])
def no_append_slash(view_func: _C) -> _C: ...