From 66c80467173c074b6303c8930f82cd9627372e38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Fri, 19 Jul 2024 18:24:59 -0600 Subject: [PATCH] Reference as attribute --- singer_sdk/streams/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/singer_sdk/streams/core.py b/singer_sdk/streams/core.py index e62b6de1f..ed9052ae0 100644 --- a/singer_sdk/streams/core.py +++ b/singer_sdk/streams/core.py @@ -252,7 +252,7 @@ def get_starting_replication_key_value( .. note:: - This method requires :meth:`~singer_sdk.Stream.replication_key` to be set + This method requires :attr:`~singer_sdk.Stream.replication_key` to be set to a non-null value, indicating the stream should be synced incrementally. """ state = self.get_context_state(context) @@ -288,7 +288,7 @@ def get_starting_timestamp( .. note:: - This method requires :meth:`~singer_sdk.Stream.replication_key` to be set + This method requires :attr:`~singer_sdk.Stream.replication_key` to be set to a non-null value, indicating the stream should be synced incrementally. """ value = self.get_starting_replication_key_value(context)