Fix logic related to skipping nested place polygon function when place=false in the layerset INI. The problem was the value from the ini file was being returned as a str, while the logic was expecting a bool. This moves the value parsing logic into a new function explicitly to return the boolean value, and adds unit tests to verify functionality.
With this change, it establishes that the case insensitive true is interpreted as True, everything else is False.
This commit is currently available as the dev image.
Addresses #347.
Fix logic related to skipping nested place polygon function when
place=false
in the layerset INI. The problem was the value from the ini file was being returned as astr
, while the logic was expecting abool
. This moves the value parsing logic into a new function explicitly to return the boolean value, and adds unit tests to verify functionality.With this change, it establishes that the case insensitive
true
is interpreted asTrue
, everything else isFalse
.This commit is currently available as the
dev
image.