Skip to content

Commit

Permalink
Add more space
Browse files Browse the repository at this point in the history
  • Loading branch information
Max-checkmk committed Jul 17, 2024
1 parent e9eb088 commit c6f01c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/modules/tag_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def __init__(self, module):
# Get Checkmk-version
self.ver = self.getversion()

def post(self): # Create taggroup
def post(self): # Create taggroup
if not self.params.get("title") or not self.params.get("tags"):
result = RESULT(
http_code=0,
Expand All @@ -203,7 +203,7 @@ def post(self): # Create taggroup
method="POST",
)

def put(self): # Update taggroup
def put(self): # Update taggroup
data = normalize_data(self.params, self.ver)

return self._fetch(
Expand All @@ -212,7 +212,7 @@ def put(self): # Update taggroup
method="PUT",
)

def delete(self): # Remove taggroup
def delete(self): # Remove taggroup
data = {}

return self._fetch(
Expand Down

0 comments on commit c6f01c2

Please sign in to comment.