From 196d4b25c6855d13984c88604f14992ddb893b5d Mon Sep 17 00:00:00 2001 From: Hassan Syyid Date: Wed, 11 Dec 2024 15:37:43 -0500 Subject: [PATCH] Fix cached_property --- .DS_Store | Bin 0 -> 6148 bytes pyproject.toml | 1 + tap_restaurant365/streams.py | 2 +- 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..6813f2bc45d0e6b7f1718f0180193fc01951b1c2 GIT binary patch literal 6148 zcmeHK%}T>S5Z<-bZYe?!3Oz1(En3^6h?fxS3mDOZN^MNhV9b^zwTDv3SzpK}@p+ut z-GHSzcoMNQu=!@^XLsj=>{Tti~}`u)ie%Lo$DEgsEhir*_zLL-F{p4 zj{A$YoS$?%ZQ1V~Ef#gLyLWJUF?^0*V)bUolL}PtQrb>wcV&I1i;QkX&{j)Hcb4oDXPO$dF6fnQ+Y3pg80x&QzG literal 0 HcmV?d00001 diff --git a/pyproject.toml b/pyproject.toml index 3630d09..5ee7f5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,7 @@ python = ">=3.7.1,<4" singer-sdk = { version="~=0.33.1" } fs-s3fs = { version = "~=1.1.1", optional = true } requests = "~=2.31.0" +"backports.cached-property" = "^1.0.1" [tool.poetry.group.dev.dependencies] pytest = ">=7.4.0" diff --git a/tap_restaurant365/streams.py b/tap_restaurant365/streams.py index 4c91956..d191e8d 100644 --- a/tap_restaurant365/streams.py +++ b/tap_restaurant365/streams.py @@ -2,7 +2,7 @@ from __future__ import annotations -from functools import cached_property +from backports.cached_property import cached_property import typing as t from datetime import datetime, timedelta from typing import Any