Skip to content

Commit

Permalink
Fixed an error when duplicating boards. (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
JUSTFUN0368 authored Oct 2, 2024
1 parent ef7a728 commit d69fd0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion monday/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '2.0.0rc3'
__version__ = '2.0.1'
__author__ = 'Christina D\'Astolfo'
__email__ = 'chdastolfo@gmail.com, lemi@prodperfect.com, pevner@prodperfect.com'
2 changes: 1 addition & 1 deletion monday/resources/boards.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ def create_board(self, board_name: str, board_kind: BoardKind, workspace_id: Opt
def duplicate_board(self, board_id: int, duplicate_type: DuplicateType, board_name: Optional[str] = None,
folder_id: Optional[int] = None, keep_subscribers: Optional[bool] = None,
workspace_id: Optional[int] = None):
query = duplicate_board_query(board_id, duplicate_type, board_name, workspace_id, folder_id, keep_subscribers)
query = duplicate_board_query(board_id, duplicate_type, board_name, folder_id, keep_subscribers, workspace_id)
return self.client.execute(query)

0 comments on commit d69fd0c

Please sign in to comment.