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:
Martin-Molinero
2025-04-21 13:37:33 -03:00
committed by GitHub
parent b81bcf086e
commit 4584feb7da
20 changed files with 106 additions and 209 deletions
@@ -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):