1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 09:13:23 +00:00

Use ruff as linter

This commit is contained in:
Jair Henrique
2023-06-26 14:43:45 -03:00
parent 34d5384318
commit a77173c002
31 changed files with 188 additions and 114 deletions

View File

@@ -4,13 +4,13 @@ import pytest
boto3 = pytest.importorskip("boto3")
import boto3 # NOQA
import botocore # NOQA
import boto3
import botocore
import vcr # NOQA
import vcr
try:
from botocore import awsrequest # NOQA
from botocore import awsrequest
botocore_awsrequest = True
except ImportError: