Skip to content

Commit 72b9b42

Browse files
committed
set default values
1 parent 94a797a commit 72b9b42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/monday_sdk/modules/boards.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def fetch_all_items_by_board_id(
5050
def _fetch_all_items(
5151
self,
5252
board_id: Union[int, str],
53-
query_params: Optional[Mapping[str, Any]],
54-
limit: int,
53+
query_params: Optional[Mapping[str, Any]] = None,
54+
limit: Optional[int] = DEFAULT_PAGE_LIMIT_ITEMS,
5555
) -> List[Item]:
5656
"""Internal method for standard item fetching with pagination."""
5757
items: List[Item] = []

0 commit comments

Comments
 (0)