# File ../../auditor/lib/kasp_auditor/partial_auditor.rb, line 442
      def store_unsigned_keys(parent, file)
        parent.delete(file)
        File.open(file, 'w') {|f|
          @unsigned_keys.each {|key|
            f.write(key.to_s + "\n")
          }
        }
      end