diff --git a/rest_framework-stubs/routers.pyi b/rest_framework-stubs/routers.pyi index f29b7db01..41c2bbb72 100644 --- a/rest_framework-stubs/routers.pyi +++ b/rest_framework-stubs/routers.pyi @@ -43,7 +43,7 @@ class BaseRouter(metaclass=RenameRouterMethods): class SimpleRouter(BaseRouter): routes: list[Route | DynamicRoute] trailing_slash: str - def __init__(self, trailing_slash: bool = ...) -> None: ... + def __init__(self, trailing_slash: bool = ..., use_regex_path: bool = ...) -> None: ... def get_routes(self, viewset: type[ViewSetMixin]) -> list[Route]: ... def _get_dynamic_route(self, route: DynamicRoute, action: Any) -> Route: ... def get_method_map(self, viewset: type[ViewSetMixin], method_map: Mapping[str, str]) -> dict[str, str]: ... diff --git a/scripts/stubtest/allowlist_todo.txt b/scripts/stubtest/allowlist_todo.txt index 19c8e6464..e766a2877 100644 --- a/scripts/stubtest/allowlist_todo.txt +++ b/scripts/stubtest/allowlist_todo.txt @@ -152,7 +152,6 @@ rest_framework.generics.GenericAPIView.__class_getitem__ rest_framework.request.Request.__class_getitem__ rest_framework.response.Response.__class_getitem__ rest_framework.routers.BaseRouter.is_already_registered -rest_framework.routers.SimpleRouter.__init__ rest_framework.schemas.openapi.AutoSchema.get_field_name rest_framework.serializers.DecimalField.__init__ rest_framework.serializers.Field.__class_getitem__