dev #3

Merged
gitark merged 84 commits from dev into main 2026-06-12 16:00:25 +03:00
Showing only changes of commit 65c82fbaf5 - Show all commits

View File

@@ -18,8 +18,7 @@ class Node:
if not url.endswith(".json"):
url += ".json"
response = self._session.get(url)
if response.status_code == 500:
raise ValueError(f"page {url} not found")
response.raise_for_status()
return NodeView(
session=self._session, base_url=self._base_url, data=response.json()
)