Skip to content

Commit

Permalink
Fix issue in group saving
Browse files Browse the repository at this point in the history
And bump version
  • Loading branch information
FISHMANPET committed May 10, 2023
1 parent 3154b9d commit f70afa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion grouper_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

Client = GrouperClient

__version__ = "0.1.1"
__version__ = "0.1.2"
__all__ = ["GrouperClient"]
2 changes: 1 addition & 1 deletion grouper_python/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def create_groups(
groups_to_save.append(group_to_save)
body = {
"WsRestGroupSaveRequest": {
"wsGroupToSaves": group_to_save,
"wsGroupToSaves": groups_to_save,
"includeGroupDetail": "T",
}
}
Expand Down

0 comments on commit f70afa3

Please sign in to comment.