Skip to content

Commit

Permalink
fix: align super style with other endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
650elx committed Dec 10, 2024
1 parent 49bd834 commit 754a91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sinch/domains/sms/endpoints/batches/list_batches.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def build_query_params(self):
return self.request_data.as_dict()

def handle_response(self, response: HTTPResponse):
super().handle_response(response)
super(ListSMSBatchesEndpoint, self).handle_response(response)
return ListSMSBatchesResponse(
batches=[
Batch(
Expand Down

0 comments on commit 754a91f

Please sign in to comment.