gh-125522: Fix bare except in test_uuid (#129018)

This commit is contained in:
Tomas R. 2025-01-29 21:59:45 +01:00 committed by GitHub
parent fdcedfd3cf
commit a1a4e9f39a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,7 +21,7 @@ def importable(name):
try:
__import__(name)
return True
except:
except ModuleNotFoundError:
return False