Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: pre-commit autoupdate #160

Merged
merged 2 commits into from
Mar 12, 2024
Merged
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
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",)