STY: Rename run_algo to run_pipeline.

This commit is contained in:
twiecki
2014-05-07 15:34:42 -04:00
parent 2bfc2f9d93
commit c9a75c7b42
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -17,9 +17,9 @@
import sys
import zipline
from zipline.utils import parse_args, run_algo
from zipline.utils import parse_args, run_pipeline
if __name__ == "__main__":
parsed = parse_args(sys.argv[1:])
run_algo(print_algo=True, **parsed)
run_pipeline(print_algo=True, **parsed)
sys.exit(0)