From 457fe36d4f42ba9384c43e60b623eabd793a7eb5 Mon Sep 17 00:00:00 2001 From: gounux Date: Fri, 26 Apr 2024 09:45:54 +0200 Subject: [PATCH] Remove property for JSON items and tags --- geotribu_cli/json/json_client.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/geotribu_cli/json/json_client.py b/geotribu_cli/json/json_client.py index 11657d5..14e26f8 100644 --- a/geotribu_cli/json/json_client.py +++ b/geotribu_cli/json/json_client.py @@ -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 @@ -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