Skip to content

Commit

Permalink
fix incorrect use of self.__class__ in super
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Feb 11, 2021
1 parent e10c99c commit 4270724
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 4270724

Please sign in to comment.