Skip to content

Commit

Permalink
remove extra arguments (#626)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegocepedaw authored Jul 21, 2021
1 parent cb7c3d7 commit 4d1dfb0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/iris/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.33"
__version__ = "1.0.34"
2 changes: 1 addition & 1 deletion src/iris/webhooks/alertmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ def on_post(self, req, resp):
'''
alert_params = ujson.loads(req.context['body'])
plan = alert_params['groupLabels']['iris_plan']
super().on_post(self, req, resp, plan)
super().on_post(req, resp, plan)
2 changes: 1 addition & 1 deletion src/iris/webhooks/rackspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ def on_post(self, req, resp):
if plan is None:
raise HTTPBadRequest('missing plan in rackspace webhook url parameters')

super().on_post(self, req, resp, plan)
super().on_post(req, resp, plan)

0 comments on commit 4d1dfb0

Please sign in to comment.