summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2016-03-31 20:55:37 -0400
committerKali Kaneko (leap communications) <kali@leap.se>2016-03-31 20:55:37 -0400
commitc2af2bdb6e9b82bb91a1d20f4fbefe5652fa383f (patch)
treea27117259263de0cd7bb93cb5d0f0aba76928401
parent4f2105c68384ad295939b73f013d5c54ce0449b5 (diff)
adjust fib(n) to same param that others examples
-rw-r--r--tasks.py3
1 files changed, 1 insertions, 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)}