Skip to content

Commit

Permalink
Fix cached_property
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyyid committed Dec 11, 2024
1 parent 622e9b0 commit 196d4b2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tap_restaurant365/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 196d4b2

Please sign in to comment.