ath10k-check: Remove import of distutils

ath10k-check fails to run on a fresh installation of Python 3.12
because module 'distutils' is not found. This is because, as if 3.12,
distutils is no longer part of the standard library.

Refer to:
https://docs.python.org/3/library/distutils.html

Fortunately, distutils is actually no longer used by ath10k-check,
so just remove the import.

Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
This commit is contained in:
Jeff Johnson 2026-01-09 09:45:15 -08:00
parent 99ecb87c5f
commit 26b0e7fa4d

View file

@ -29,7 +29,6 @@ import queue
import threading
import string
import hashlib
import distutils.spawn
CHECKPATCH_COMMIT = '99b70ece33d87500ef7bee8e32cb99772c45ce14'