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,8 +12,8 @@

import brotlicffi as _brotli

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

from decorator import decorator
Expand Down
2 changes: 1 addition & 1 deletion httpbin/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
parse_authorization_header = Authorization.from_header

from flask import request, make_response
from six.moves.urllib.parse import urlparse, urlunparse
from 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 @@ -37,7 +37,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