Skip to content

Commit

Permalink
Merge pull request #578 from fmigneault/super-class
Browse files Browse the repository at this point in the history
fix incorrect use of self.__class__ in super
  • Loading branch information
cehbrecht authored Feb 12, 2021
2 parents e10c99c + 4270724 commit b3d6ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pywps/response/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self, wps_request, uuid, **kwargs):
:param uuid: string this request uuid
"""

super(self.__class__, self).__init__(wps_request, uuid)
super(ExecuteResponse, self).__init__(wps_request, uuid)

self.process = kwargs["process"]
self.outputs = {o.identifier: o for o in self.process.outputs}
Expand Down

0 comments on commit b3d6ce6

Please sign in to comment.