class Geocoder::Lookup::Okf

def valid_response?(response)

def valid_response?(response)
  json = parse_json(response.body)
  status = json["status"] if json
  super(response) and ['OK', 'ZERO_RESULTS'].include?(status)
end