WP_User_Query is Not Displaying Results

Here is a basic example of a user query I’m using that is working. Please note that I am using the role__in argument instead of the role argument. I’m not sure why the role argument wouldn’t work for you but I know this code works so hopefully it will work for you as well.

$args = array(
    'role__in' => array('Subcriber', 'Editor'),
); // End Args
if ($args){
    $user_query = new WP_User_Query( $args );
}