Skip to content

Commit d90b055

Browse files
chore: pre-commit autoupdate (#226)
<!--pre-commit.ci start--> updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.2 → v0.5.4](astral-sh/ruff-pre-commit@v0.5.2...v0.5.4) - [github.com/pre-commit/mirrors-mypy: v1.10.1 → v1.11.0](pre-commit/mirrors-mypy@v1.10.1...v1.11.0) <!--pre-commit.ci end--> --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent b79dbd3 commit d90b055

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: .pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ repos:
2020
- id: check-github-workflows
2121

2222
- repo: https://github.com/astral-sh/ruff-pre-commit
23-
rev: v0.5.2
23+
rev: v0.5.4
2424
hooks:
2525
- id: ruff
2626
args: [--fix, --exit-non-zero-on-fix]
2727
- id: ruff-format
2828

2929
- repo: https://github.com/pre-commit/mirrors-mypy
30-
rev: v1.10.1
30+
rev: v1.11.0
3131
hooks:
3232
- id: mypy
3333
additional_dependencies:

Diff for: target_snowflake/connector.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ def _get_column_selections(
355355
)
356356
return column_selections
357357

358-
def _get_merge_from_stage_statement( # noqa: ANN202, PLR0913
358+
def _get_merge_from_stage_statement( # noqa: ANN202
359359
self,
360360
full_table_name: str,
361361
schema: dict,
@@ -477,7 +477,7 @@ def create_file_format(self, file_format: str) -> None:
477477
)
478478
conn.execute(file_format_statement, **kwargs)
479479

480-
def merge_from_stage( # noqa: PLR0913
480+
def merge_from_stage(
481481
self,
482482
full_table_name: str,
483483
schema: dict,

Diff for: target_snowflake/sinks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class SnowflakeSink(SQLSink):
3434

3535
connector_class = SnowflakeConnector
3636

37-
def __init__( # noqa: PLR0913
37+
def __init__(
3838
self,
3939
target: PluginBase,
4040
stream_name: str,

0 commit comments

Comments
 (0)