Skip to content

Commit d58d7e8

Browse files
committed
Add misisng method: param_checker(...) to RequestAdapterInterface
1 parent e7610cc commit d58d7e8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/catalystwan-types/src/catalystwan/abc/request_adapter_interface.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
from typing import TYPE_CHECKING, Any, Optional, Protocol, Type, TypeVar, Union
3+
from typing import TYPE_CHECKING, Any, Optional, Protocol, Type, TypeVar, Union, List, Tuple
44

55
from catalystwan.abc.types import HTTP_METHOD, JSON
66
from typing_extensions import Self
@@ -26,5 +26,7 @@ def request(
2626
*args,
2727
**kwargs,
2828
) -> Union[ReturnType, Any]: ...
29+
30+
def param_checker(self, required_params: List[Tuple[Any, Type]], excluded_params: List[Any]): ...
2931

3032
def __copy__(self) -> Self: ...

0 commit comments

Comments
 (0)