How to check if I’m on a custom post type archive in the admin area

I am trying to alter the query that’s ran on the admin page of my custom post type. This page: /wp-admin/edit.php?post_type=my_venue. Typically, I would use is_admin() && is_post_type_archive('my_venue') to check if I’m on the correct page before modifying the query. However, I have registered my post type with 'archive' => false so now is_post_type_archive() always returns false.