Skip to content

Commit 00ab0b8

Browse files
fix missing "self" as function argument
1 parent a095541 commit 00ab0b8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
File renamed without changes.

twilio/1.8.0/api.yaml renamed to twilio/1.9.0/api.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
walkoff_version: 1.8.0
2-
app_version: 1.8.0
1+
walkoff_version: 1.9.0
2+
app_version: 1.9.0
33
name: twilio
44
description: Send SMS from Shuffle through Twilio.com
55
tags:
File renamed without changes.

twilio/1.8.0/src/app.py renamed to twilio/1.9.0/src/app.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from walkoff_app_sdk.app_base import AppBase
66

77
class TWILIO(AppBase):
8-
__version__ = "1.8.0"
8+
__version__ = "1.9.0"
99
app_name = "twilio"
1010

1111
def __init__(self, redis, logger, console_logger=None):
@@ -135,7 +135,7 @@ def prepare_response(self, request):
135135
}
136136

137137

138-
def summarize_responses(one_response, summary):
138+
def summarize_responses(self, one_response, summary):
139139
summary["results"].append(one_response)
140140

141141
# if ONE request fails, summary is marked as failed

0 commit comments

Comments
 (0)