Skip to content

Commit

Permalink
Fix mypy checks
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jul 11, 2023
1 parent f9af772 commit 59ed35c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 20 deletions.
16 changes: 1 addition & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,6 @@ fail_under = 82
[tool.mypy]
exclude = "tests"
files = "singer_sdk"
plugins = [
"sqlalchemy.ext.mypy.plugin",
]
python_version = "3.8"
warn_unused_configs = true
warn_unused_ignores = true
Expand Down
3 changes: 1 addition & 2 deletions singer_sdk/sinks/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from collections import defaultdict
from copy import copy
from textwrap import dedent
from typing import Any, Iterable

import sqlalchemy
from pendulum import now
Expand Down Expand Up @@ -299,7 +298,7 @@ def bulk_insert_records(
self,
full_table_name: str,
schema: dict,
records: Iterable[dict[str, Any]],
records: t.Iterable[dict[str, t.Any]],
) -> int | None:
"""Bulk insert records to an existing destination table.
Expand Down

0 comments on commit 59ed35c

Please sign in to comment.