Skip to content

Commit

Permalink
Merge branch 'main' into 2726-bug-json-schema-union-types-that-contai…
Browse files Browse the repository at this point in the history
…n-boolean-result-in-casting-json-objects-and-arrays-as-boolean-values
  • Loading branch information
edgarrmondragon authored Oct 22, 2024
2 parents 1aa3b3c + 9231412 commit f663771
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
griffe~=1.4
griffe~=1.5
pip==24.2
poetry==1.8.3
poetry==1.8.4
pre-commit==4.0.1
nox==2024.10.9
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ repos:
- id: check-readthedocs

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.7.0
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
Expand Down
2 changes: 1 addition & 1 deletion singer_sdk/sinks/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def generate_insert_statement(
INSERT INTO {full_table_name}
({", ".join(column_identifiers)})
VALUES ({", ".join([f":{name}" for name in property_names])})
""", # noqa: S608
""",
)
return statement.rstrip()

Expand Down

0 comments on commit f663771

Please sign in to comment.