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)