From 58f5097454a8df1a0fdf3387708b9ea7a80ff679 Mon Sep 17 00:00:00 2001 From: Maxime Armstrong Date: Thu, 21 Nov 2024 12:56:15 -0500 Subject: [PATCH] Make is_syncable a property --- .../libraries/dagster-fivetran/dagster_fivetran/translator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python_modules/libraries/dagster-fivetran/dagster_fivetran/translator.py b/python_modules/libraries/dagster-fivetran/dagster_fivetran/translator.py index 75d637df4e876..be51e60ceee0f 100644 --- a/python_modules/libraries/dagster-fivetran/dagster_fivetran/translator.py +++ b/python_modules/libraries/dagster-fivetran/dagster_fivetran/translator.py @@ -64,6 +64,7 @@ def is_connected(self) -> bool: def is_paused(self) -> bool: return self.paused + @property def is_syncable(self) -> bool: """Confirms that the connector can be sync. Will raise a Failure in the event that the connector is either paused or not fully set up.