diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b8223e12..5dd41fcd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,18 +1,18 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.2.1 + rev: v0.3.2 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - repo: https://github.com/psf/black - rev: 23.1.0 + rev: 24.2.0 hooks: - id: black args: [--line-length=120, --safe] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: check-case-conflict - id: check-merge-conflict @@ -23,14 +23,14 @@ repos: - id: requirements-txt-fixer - repo: https://github.com/pycqa/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort name: isort (python) args: ['--force-single-line-imports', '--profile', 'black'] - repo: https://github.com/asottile/blacken-docs - rev: 1.13.0 + rev: 1.16.0 hooks: - id: blacken-docs additional_dependencies: [ black ] diff --git a/pytest_httpserver/__init__.py b/pytest_httpserver/__init__.py index ab22dab9..ae04d932 100644 --- a/pytest_httpserver/__init__.py +++ b/pytest_httpserver/__init__.py @@ -2,6 +2,7 @@ This is package provides the main API for the pytest_httpserver package. """ + __all__ = [ "HTTPServer", "HTTPServerError",