From 0521c7fd11568d5e7ac8748270b56e702a683040 Mon Sep 17 00:00:00 2001 From: Maxime Armstrong Date: Fri, 15 Nov 2024 09:48:47 -0500 Subject: [PATCH] Hash tuple --- .../libraries/dagster-fivetran/dagster_fivetran/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_modules/libraries/dagster-fivetran/dagster_fivetran/resources.py b/python_modules/libraries/dagster-fivetran/dagster_fivetran/resources.py index 4cc3b4f2e1e0e..c32de6828e410 100644 --- a/python_modules/libraries/dagster-fivetran/dagster_fivetran/resources.py +++ b/python_modules/libraries/dagster-fivetran/dagster_fivetran/resources.py @@ -904,7 +904,7 @@ def __eq__(self, other): ) def __hash__(self): - return hash(self.account_id + self.api_key + self.api_secret) + return hash((self.account_id + self.api_key + self.api_secret)) @lru_cache(maxsize=None)