#!/bin/sh -eC
set -o pipefail

exec xargs -I'{}' sh -c \
"python3 -c 'import {}' 2>/dev/null || { echo '{}'; exit 1; }"
