From fbeff42106a97fcc99771120a4c06e11114d6a52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Mon, 27 Nov 2023 17:37:06 -0600 Subject: [PATCH] Restore missing wheels to `poetry.lock` --- poetry.lock | 2 +- singer_sdk/sinks/core.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 5363c8026..cc3a40326 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. [[package]] name = "alabaster" diff --git a/singer_sdk/sinks/core.py b/singer_sdk/sinks/core.py index 567f71490..32d027cfa 100644 --- a/singer_sdk/sinks/core.py +++ b/singer_sdk/sinks/core.py @@ -96,7 +96,8 @@ def __init__( self._batch_dupe_records_merged: int = 0 self._validator = Draft7Validator( - schema, format_checker=Draft7Validator.FORMAT_CHECKER + schema, + format_checker=Draft7Validator.FORMAT_CHECKER, ) def _get_context(self, record: dict) -> dict: # noqa: ARG002