From 885bed888d2df9411f77381c04fc9a578db723fb Mon Sep 17 00:00:00 2001 From: moanos Date: Sun, 26 Jan 2025 17:07:50 +0100 Subject: [PATCH] feat: Raise connection error upon unexpected error This e.g. makes sure the API is not bombarded with unauthorized calls if the token is wrong --- src/fellchensammlung/animal_shelter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fellchensammlung/animal_shelter.py b/src/fellchensammlung/animal_shelter.py index 9fa1357..ad9ab5a 100644 --- a/src/fellchensammlung/animal_shelter.py +++ b/src/fellchensammlung/animal_shelter.py @@ -42,6 +42,8 @@ def send_to_api(data): print(f"Error: Shelter '{data['name']}' already exists or invalid data.") else: print(f"Unexpected Error: {response.status_code} - {response.text}") + raise ConnectionError + def main(): # Step 1: Load OSM data