Skip to content

Commit

Permalink
chore: pre-commit autoupdate (#160)
Browse files Browse the repository at this point in the history
<!--pre-commit.ci start-->
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.2.2 →
v0.3.2](astral-sh/ruff-pre-commit@v0.2.2...v0.3.2)
- [github.com/pre-commit/mirrors-mypy: v1.8.0 →
v1.9.0](pre-commit/mirrors-mypy@v1.8.0...v1.9.0)
<!--pre-commit.ci end-->

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Mar 12, 2024
1 parent 49ad06d commit 124297b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ repos:
- id: check-github-workflows

- 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]
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
rev: v1.9.0
hooks:
- id: mypy
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions target_snowflake/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Singer.io Target for the Snowflake data warehouse platform."""

from __future__ import annotations

__version__ = "0.0.0"
1 change: 1 addition & 0 deletions target_snowflake/sinks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Snowflake target sink class, which handles writing streams."""

from __future__ import annotations

import os
Expand Down
1 change: 1 addition & 0 deletions tests/batch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""BATCH Tests for Target Snowflake."""

from __future__ import annotations

import typing as t
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test Configuration."""

from __future__ import annotations

pytest_plugins = ("singer_sdk.testing.pytest_plugin",)

0 comments on commit 124297b

Please sign in to comment.