Looking at examples/create_forest.py The tons of set_xxx() methods are completely superfluous and unpythonic. Why don't you just use create.some_property = value directly instead of usinger setter methods? Python is not Java!
Looking at examples/create_forest.py
The tons of set_xxx() methods are completely superfluous and unpythonic.
Why don't you just use
create.some_property = value
directly instead of usinger setter methods? Python is not Java!