Do not override python built-ins "input" and "iter"
Closed this issue · 1 comments
joejohnston203 commented
input() is a built-in function in python. Several Configure() methods currently use input as the name of the input parameter to Configure, which overwrites the python built-in. We should rename all instances to some other variable name (eg params).
joejohnston203 commented
"iter" is also a python builtin, and it is currently overwritten in the morpho class.