From f3b31fe7b496d9667013361bf94922534519bc83 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Fri, 6 Nov 2020 16:45:16 -0600 Subject: [PATCH] bug fix: removing print statements --- src/api/index.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/api/index.py b/src/api/index.py index 63d7fad..455a600 100755 --- a/src/api/index.py +++ b/src/api/index.py @@ -93,7 +93,6 @@ def to_session(): This function will store/persist session variables for reuse """ info = request.json - print(info) if info : for key in info : session[key] = info[key] @@ -114,8 +113,6 @@ def signup(): # # We are receiving a call from stripe framework and we need create a charge for this # @NOTE: https://stripe.com/docs/payments/accept-a-payment-charges#web-create-charge - print() - print (session) token = request.form['stripeToken'] if 'stripeToken' in request.form else None email = session['auth']['user']['uid'] plan_id = session['plan']['id']