Remove semicolon in python algrotihms

This commit is contained in:
Jing Wu
2018-07-06 11:05:16 -04:00
parent 889fd927fc
commit 084cd294b0
28 changed files with 51 additions and 51 deletions
@@ -72,8 +72,8 @@ class UpdateOrderRegressionAlgorithm(QCAlgorithm):
if self.Time.month != self.last_month:
# we'll submit the next type of order from the queue
orderType = self.order_types_queue.Dequeue();
#Log("");
orderType = self.order_types_queue.Dequeue()
#Log("")
self.Log("\r\n--------------MONTH: {0}:: {1}\r\n".format(self.Time.strftime("%B"), orderType))
#Log("")
self.last_month = self.Time.month