Merge pull request #264 from marsam/fix-exception-statement

fix: correct try/except statement
This commit is contained in:
依云 2024-04-19 09:56:46 +08:00 committed by GitHub
commit 0355af5e4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ import pytest
jq_available = True
try:
import jq
except jq:
except ImportError:
jq_available = False
pytestmark = [