From 32d57ef955508f86c11c27e13d07f2a9d8149627 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Mon, 22 Apr 2013 15:33:13 -0400 Subject: [PATCH] STY: Add space after comma in order docstring. --- zipline/gens/tradesimulation.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zipline/gens/tradesimulation.py b/zipline/gens/tradesimulation.py index b71707b4..f40fb2c5 100644 --- a/zipline/gens/tradesimulation.py +++ b/zipline/gens/tradesimulation.py @@ -356,10 +356,10 @@ class AlgorithmSimulator(object): """ amount > 0 :: Buy/Cover amount < 0 :: Sell/Short - Market order: order(sid,amount) - Limit order: order(sid,amount, limit_price) - Stop order: order(sid,amount, None, stop_price) - StopLimit order: order(sid,amount, limit_price, stop_price) + Market order: order(sid, amount) + Limit order: order(sid, amount, limit_price) + Stop order: order(sid, amount, None, stop_price) + StopLimit order: order(sid, amount, limit_price, stop_price) """ # just validates amount and passes rest on to TransactionSimulator