Skip to content

Commit

Permalink
Merge pull request #687 from Checkmk/devel
Browse files Browse the repository at this point in the history
Release 5.3.1
  • Loading branch information
robin-checkmk authored Oct 23, 2024
2 parents e6f591a + 6597ef7 commit 9b83df0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/contact_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def create_contact_groups(module, base_url, groups, headers):
{
"name": el.get("name"),
"alias": el.get("title", el.get("name")),
"customer": el.get("customer", "provider"),
"customer": module.params.get("customer"),
}
for el in groups
],
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/host_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def create_host_groups(module, base_url, groups, headers):
{
"name": el.get("name"),
"alias": el.get("title", el.get("name")),
"customer": el.get("customer", "provider"),
"customer": module.params.get("customer"),
}
for el in groups
],
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/service_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def create_service_groups(module, base_url, groups, headers):
{
"name": el.get("name"),
"alias": el.get("title", el.get("name")),
"customer": el.get("customer", "provider"),
"customer": module.params.get("customer"),
}
for el in groups
],
Expand Down
16 changes: 8 additions & 8 deletions qa-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
black==24.3.0
click==8.1.3
isort==5.10.1
mypy-extensions==0.4.3
pathspec==0.9.0
platformdirs==2.5.2
tomli==2.0.1
typing-extensions==4.2.0
black==24.10.0
click==8.1.7
isort==5.13.2
mypy-extensions==1.0.0
pathspec==0.12.1
platformdirs==4.3.6
tomli==2.0.2
typing-extensions==4.12.2

0 comments on commit 9b83df0

Please sign in to comment.