Remove extra ; at Python files (#6248)
Regression Tests / build (push) Has been cancelled
Build & Test Lean / build (push) Has been cancelled
Research Regression Tests / build (push) Has been cancelled

Co-authored-by: LouisSzeto <hke0073@hotmail.com>
This commit is contained in:
Louis Szeto
2022-03-10 22:09:33 +08:00
committed by GitHub
parent 0c9c8c45e5
commit cece811cce
6 changed files with 17 additions and 17 deletions
@@ -39,8 +39,8 @@ class BasicTemplateIndiaIndexAlgorithm(QCAlgorithm):
self.DefaultOrderProperties = IndiaOrderProperties(Exchange.NSE)
# Define indicator
self._emaSlow = self.EMA(self.Nifty, 80);
self._emaFast = self.EMA(self.Nifty, 200);
self._emaSlow = self.EMA(self.Nifty, 80)
self._emaFast = self.EMA(self.Nifty, 200)
self.Debug("numpy test >>> print numpy.pi: " + str(np.pi))