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