Merge PythonSlice into Slice (#8707)
- To simplify stub generation, merge PythonSlice into Slice, following existing pattern too, see QCAlgorithm.Python.cs - Minor sintax fixes in example python algorithms
This commit is contained in:
@@ -47,7 +47,7 @@ class RangeIndicator(PythonIndicator):
|
||||
self.name = name
|
||||
self.time = datetime.min
|
||||
self.value = 0
|
||||
self.is_ready = False;
|
||||
self.is_ready = False
|
||||
|
||||
@property
|
||||
def is_ready(self):
|
||||
@@ -72,7 +72,7 @@ class RangeIndicator2(PythonIndicator):
|
||||
self.name = name
|
||||
self.time = datetime.min
|
||||
self.value = 0
|
||||
self._is_ready = False;
|
||||
self._is_ready = False
|
||||
|
||||
@property
|
||||
def is_ready(self):
|
||||
|
||||
Reference in New Issue
Block a user