diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5b97de8..a602d7c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.7.4 + rev: v0.8.0 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] diff --git a/pytest_httpserver/__init__.py b/pytest_httpserver/__init__.py index f84d01a..f285b89 100644 --- a/pytest_httpserver/__init__.py +++ b/pytest_httpserver/__init__.py @@ -4,19 +4,19 @@ """ __all__ = [ + "METHOD_ALL", + "URI_DEFAULT", + "BlockingHTTPServer", + "BlockingRequestHandler", + "Error", "HTTPServer", "HTTPServerError", - "Error", - "NoHandlerError", - "WaitingSettings", "HeaderValueMatcher", + "NoHandlerError", "RequestHandler", "RequestMatcher", "URIPattern", - "URI_DEFAULT", - "METHOD_ALL", - "BlockingHTTPServer", - "BlockingRequestHandler", + "WaitingSettings", ] from .blocking_httpserver import BlockingHTTPServer