fixed convert string to dict when reading min/max frequencies
@justin.janquart When doing golum_reweight_joint_samples
, json.loads
crashed when the ini contained e.g ...{H1:20, L1:20}'
instead of ...{'H1':20, 'L1':20}'
, so now it's using bilby_pipe.utils.convert_string_to_dict
to read it.