Skip to content

Commit 4a98464

Browse files
committed
Modify BaseBackend.execute method to improve typing
1 parent 2e22b85 commit 4a98464

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

flask_phpbb3/backends/base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ def execute(
5353
command: str,
5454
cache: bool = False,
5555
cache_ttl: Optional[int] = None,
56-
**kwargs
56+
skip: int = 0,
57+
limit: Optional[int] = 10,
58+
**kwargs: int | str
5759
) -> Any:
5860
raise NotImplementedError
5961

0 commit comments

Comments
 (0)