def users_without_followers_data(tweets)
    tweets.select { |s| s.dig(:user, :followers_count).nil? }.tap do |statuses|
      @meta[:user_ids_without_followers_count] = statuses.map { |s| s.dig(:user, :id) }