diff options
| author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-03-31 20:55:37 -0400 |
|---|---|---|
| committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-03-31 20:55:37 -0400 |
| commit | c2af2bdb6e9b82bb91a1d20f4fbefe5652fa383f (patch) | |
| tree | a27117259263de0cd7bb93cb5d0f0aba76928401 | |
| parent | 4f2105c68384ad295939b73f013d5c54ce0449b5 (diff) | |
adjust fib(n) to same param that others examples
| -rw-r--r-- | tasks.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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)} |
