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 jq_available = True
try: try:
import jq import jq
except jq: except ImportError:
jq_available = False jq_available = False
pytestmark = [ pytestmark = [