From 28f3b722c305b336c4b26b9c4fae018c889c954d Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 17 Aug 2014 23:06:53 -0700 Subject: [PATCH] Fixed DummyFD (unexpected keyword argument error) --- trade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trade.py b/trade.py index 9b88ad5a..4e033d2b 100644 --- a/trade.py +++ b/trade.py @@ -46,7 +46,7 @@ class DummyMFD(object): def __init__(self): pass - def update(self, *args): + def update(self, *args, **kwargs): pass def finish(self):