Skip to content

Commit

Permalink
Remove property for JSON items and tags
Browse files Browse the repository at this point in the history
  • Loading branch information
gounux committed Apr 26, 2024
1 parent fa0c803 commit 457fe36
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions geotribu_cli/json/json_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def __init__(self, url: str = JSON_FEED_URL, tags_url: str = JSON_TAGS_URL):
self.url = url
self.tags_url = tags_url

@property
def items(self) -> list[dict[str, Any]]:
"""
Fetch Geotribu JSON feed items
Expand All @@ -38,7 +37,6 @@ def items(self) -> list[dict[str, Any]]:
r.raise_for_status()
return r.json()["items"]

@property
def tags(self, should_sort: bool = False) -> list[str]:
"""
Fetch Geotribu used tags
Expand Down

0 comments on commit 457fe36

Please sign in to comment.