Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pre-commit: Autoupdate #827

Merged
merged 2 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.2
rev: v0.3.0
hooks:
- id: ruff
args: ["--show-source"]
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_httplib2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Integration tests with httplib2"""

from urllib.parse import urlencode

import pytest
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_requests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test requests' interaction with vcr"""

import pytest

import vcr
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_tornado.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test requests' interaction with vcr"""

import asyncio
import functools
import inspect
Expand Down
1 change: 1 addition & 0 deletions vcr/patch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utilities for patching in cassettes"""

import contextlib
import functools
import http.client as httplib
Expand Down
1 change: 1 addition & 0 deletions vcr/stubs/aiohttp_stubs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Stubs for aiohttp HTTP clients"""

import asyncio
import functools
import json
Expand Down
1 change: 1 addition & 0 deletions vcr/stubs/boto3_stubs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Stubs for boto3"""

from botocore.awsrequest import AWSHTTPConnection as HTTPConnection
from botocore.awsrequest import AWSHTTPSConnection as VerifiedHTTPSConnection

Expand Down
1 change: 1 addition & 0 deletions vcr/stubs/tornado_stubs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Stubs for tornado HTTP clients"""

import functools
from io import BytesIO

Expand Down