diff --git a/pricing/pricing.py b/pricing/pricing.py index c54fad2..fa649ef 100644 --- a/pricing/pricing.py +++ b/pricing/pricing.py @@ -640,10 +640,7 @@ order by b.enabled_date desc""" continue f = d.fields.get(fk) if not f: - if isinstance(fv, str) and any(op in fv for op in ('~=', '=~', '~', '=~=')): - f = DictObject(type='float', value_mode='between') - else: - continue + continue data_value = config_data.get(fk) data_value = data_mapping(d, fk, data_value) if data_value is None: @@ -690,10 +687,7 @@ order by b.enabled_date desc""" continue f = d.fields.get(fk) if not f: - if isinstance(fv, str) and any(op in fv for op in ('~=', '=~', '~', '=~=')): - f = DictObject(type='float', value_mode='between') - else: - continue + continue data_value = config_data.get(fk) data_value = data_mapping(d, fk, data_value) if data_value is None: