From 0380218888ccf9b78c30b975d186865ece7bd588 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 18:45:33 -0600 Subject: [PATCH] chore: pre-commit autoupdate (#138) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.2.2 → v0.3.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.2.2...v0.3.2) - [github.com/pre-commit/mirrors-mypy: v1.8.0 → v1.9.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.8.0...v1.9.0) --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 4 ++-- tap_smoke_test/tap.py | 1 + tests/conftest.py | 1 + tests/test_core.py | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c67532a..a914091 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,14 +18,14 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.2.2 + rev: v0.3.2 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix, --show-fixes] - id: ruff-format - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.8.0 + rev: v1.9.0 hooks: - id: mypy additional_dependencies: diff --git a/tap_smoke_test/tap.py b/tap_smoke_test/tap.py index c2c9d7a..d7d5b97 100644 --- a/tap_smoke_test/tap.py +++ b/tap_smoke_test/tap.py @@ -1,4 +1,5 @@ """SmokeTest tap class.""" + from __future__ import annotations from typing import List diff --git a/tests/conftest.py b/tests/conftest.py index 94a0910..4f34abb 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,2 +1,3 @@ """Pytest configuration for tests in this directory.""" + from __future__ import annotations diff --git a/tests/test_core.py b/tests/test_core.py index e717a48..a76453b 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1,4 +1,5 @@ """Tests standard tap features using the built-in SDK tests library.""" + from __future__ import annotations import re