fix a typo, and remove all unnecessary semicolumns in Python (#5795)
Regression Tests / build (push) Has been cancelled
Build & Test Lean / build (push) Has been cancelled

This commit is contained in:
Marco Grassi
2021-07-28 03:05:13 +08:00
committed by GitHub
parent 4469d18eb6
commit e823dfdfb7
51 changed files with 143 additions and 143 deletions
@@ -46,7 +46,7 @@ class CustomDataPropertiesRegressionAlgorithm(QCAlgorithm):
# For regression purposes on AddData overloads, this call is simply to ensure Lean can accept this
# with default params and is not routed to a breaking function.
self.AddData(Bitcoin, "BTCUSD");
self.AddData(Bitcoin, "BTCUSD")
def OnData(self, data):
@@ -57,7 +57,7 @@ class CustomDataPropertiesRegressionAlgorithm(QCAlgorithm):
def OnEndOfAlgorithm(self):
#Reset our Symbol property value, for testing purposes.
self.SymbolPropertiesDatabase.SetEntry(Market.USA, self.MarketHoursDatabase.GetDatabaseSymbolKey(self.bitcoin.Symbol), SecurityType.Base,
SymbolProperties.GetDefault("USD"));
SymbolProperties.GetDefault("USD"))