string conversion of 'None' in submission helpers
Currently to ensure consistent data types we explicitly convert some options to the desired type. However, this cases python's None
to be turned into the string 'None'
which then conflicts with check like
if x is None or len(x)==0: ...
We should use a more intuitive string conversion that prevents such issues