Update Notes on using Lem's algorithm interface authored by Peter Menegay's avatar Peter Menegay
......@@ -14,7 +14,7 @@ The `list[float]` is an example of a subscripted type. Python 3.9 should also wo
The exact error you get before upgrading Python is:
`builtins.TypeError: 'type' object is not subscriptable`
Also had to `pip install loguru` in my Python 3.10. This is not critical because you can always just remove the logging (a single line in the algorithms.py code).
Also had to `pip install loguru` in my Python 3.10. This is not critical, as Lem pointed out, because you can always just remove the logging (a single line in the algorithms.py code).
Thereafter everything worked fine. This discussion will now focus on the details of integrating custom algorithms (custom_algo.py) with the interface (algorithms.py).
......
......