stderr.write("WARNING: default min_part_hours may not match the value in the lost builder.")
it should be:
print("WARNING: default min_part_hours may not match the value in the lost builder.", file=sys.stderr)
This change will provide greater consistency and will allow unit tests to more easily mock print statement (suppress logging to console during testing).
Instead of:
stderr. write(" WARNING: default min_part_hours may not match the value in the lost builder.")
it should be:
print("WARNING: default min_part_hours may not match the value in the lost builder.", file=sys.stderr)
This change will provide greater consistency and will allow unit tests to more easily mock print statement (suppress logging to console during testing).