Skip to content
Open
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 httpbin/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import brotlicffi as _brotli

from six import BytesIO
from io import BytesIO
from decimal import Decimal
from time import time as now

Expand Down
3 changes: 2 additions & 1 deletion httpbin/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
import time
import os
from hashlib import md5, sha256, sha512
from urllib.parse import urlparse, urlunparse

from werkzeug.datastructures import WWWAuthenticate
from werkzeug.http import dump_header

Expand All @@ -23,7 +25,6 @@
parse_authorization_header = Authorization.from_header

from flask import request, make_response
from six.moves.urllib.parse import urlparse, urlunparse


from .structures import CaseInsensitiveDict
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ dependencies = [
'greenlet < 3.0; python_version<"3.12"',
'greenlet >= 3.0.0a1; python_version>="3.12.0rc0"',
'importlib-metadata; python_version<"3.8"',
"six",
"werkzeug >= 2.2.2",
]

Expand Down