From 5ef4986a3ba82267d1d5a9d0987b81df3bc27585 Mon Sep 17 00:00:00 2001 From: Aaron Steers Date: Wed, 2 Oct 2024 08:56:07 -0700 Subject: [PATCH] default to 'None' for connection to checkpoint --- airbyte/shared/sql_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte/shared/sql_processor.py b/airbyte/shared/sql_processor.py index 2906fa25..d4899b7e 100644 --- a/airbyte/shared/sql_processor.py +++ b/airbyte/shared/sql_processor.py @@ -348,7 +348,7 @@ def _setup(self) -> None: # noqa: B027 # Intentionally empty, not abstract def _do_checkpoint( # noqa: B027 # Intentionally empty, not abstract self, - connection: Connection | None, + connection: Connection | None = None, ) -> None: """Checkpoint the given connection.