From c01394d11706404f8c15778aa7e9573d7c04e3b0 Mon Sep 17 00:00:00 2001 From: idelgado Date: Fri, 16 Jun 2017 18:36:28 -0400 Subject: [PATCH] Revise comment --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index d99e757..e1c494d 100644 --- a/app.py +++ b/app.py @@ -12,7 +12,7 @@ from dotenv import load_dotenv, find_dotenv from os.path import join, dirname from inflection import underscore -# Convert keys to snake_case to conform with the python api definition contract +# Convert keys to snake_case to conform with the twilio-python api definition contract def snake_case_keys(somedict): return dict(map(lambda (key, value): (underscore(key), value), somedict.items()))