MAINT: Remove call to write_all when initializing db

This commit is contained in:
Stewart Douglas
2015-08-07 16:52:04 -04:00
committed by jfkirk
parent d55920a43b
commit a8f60366cd
+1 -1
View File
@@ -139,7 +139,7 @@ class TradingEnvironment(object):
self.exchange_tz = exchange_tz
self.engine = engine = create_engine('sqlite:///:memory:')
AssetDBWriterFromDictionary().write_all(engine)
AssetDBWriterFromDictionary().init_db(engine)
self.asset_finder = AssetFinder(engine)
def __enter__(self, *args, **kwargs):