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

Fix formatting with regard to black 23.3.0

This commit is contained in:
Sebastian Pipping
2023-05-04 20:46:31 +02:00
committed by Jair Henrique
parent 1d90853f3b
commit 4994c53590
7 changed files with 1 additions and 8 deletions

View File

@@ -12,7 +12,7 @@ def get_header(message, name):
def get_header_items(message):
for (key, values) in get_headers(message):
for key, values in get_headers(message):
for value in values:
yield key, value

View File

@@ -28,7 +28,6 @@ class VCRHTTPSConnectionWithTimeout(VCRHTTPSConnection, HTTPSConnectionWithTimeo
_baseclass = HTTPSConnectionWithTimeout
def __init__(self, *args, **kwargs):
# Delete the keyword arguments that HTTPSConnection would not recognize
safe_keys = {
"host",