From c2af2bdb6e9b82bb91a1d20f4fbefe5652fa383f Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Thu, 31 Mar 2016 20:55:37 -0400 Subject: adjust fib(n) to same param that others examples --- tasks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index 5079e4b..2d3ca36 100644 --- a/tasks.py +++ b/tasks.py @@ -17,5 +17,4 @@ class FibCalculator(child.AMPChild): @Fib.responder def fib(self): print 'called responder, fib...' - n = 10 - return {"fib": fib(n)} + return {"fib": fib(25)} -- cgit v1.2.3