skr1125 commited on
Commit
84717e8
·
verified ·
1 Parent(s): b92c196

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -29,7 +29,7 @@ def get_new_moon_dates(year:int)-> str: #it's import to specify the return type
29
 
30
  if data.get('error'):
31
  print(f"Error from USNO API: {data['error']}")
32
- return None
33
 
34
  new_moon_dates = []
35
  for phase_data in data.get('data', []):
@@ -40,7 +40,7 @@ def get_new_moon_dates(year:int)-> str: #it's import to specify the return type
40
  new_moon_dates.append(date_obj)
41
  except ValueError as e:
42
  print(f"Error parsing date: {date_str} - {e}")
43
- return None
44
 
45
  new_moon_dates.sort()
46
 
@@ -50,13 +50,13 @@ def get_new_moon_dates(year:int)-> str: #it's import to specify the return type
50
 
51
  except requests.exceptions.RequestException as e:
52
  print(f"Error during API request: {e}")
53
- return None
54
  except json.JSONDecodeError as e:
55
  print(f"Error decoding JSON response: {e}")
56
- return None
57
  except Exception as e:
58
  print(f"An unexpected error occurred: {e}")
59
- return None
60
 
61
  #return "What magic will you build ?"
62
 
 
29
 
30
  if data.get('error'):
31
  print(f"Error from USNO API: {data['error']}")
32
+ return "This is a data error"
33
 
34
  new_moon_dates = []
35
  for phase_data in data.get('data', []):
 
40
  new_moon_dates.append(date_obj)
41
  except ValueError as e:
42
  print(f"Error parsing date: {date_str} - {e}")
43
+ return "This is a error parsing date"
44
 
45
  new_moon_dates.sort()
46
 
 
50
 
51
  except requests.exceptions.RequestException as e:
52
  print(f"Error during API request: {e}")
53
+ return "Error during API request"
54
  except json.JSONDecodeError as e:
55
  print(f"Error decoding JSON response: {e}")
56
+ return "Error decoding JSON response"
57
  except Exception as e:
58
  print(f"An unexpected error occurred: {e}")
59
+ return "Unexpected error"
60
 
61
  #return "What magic will you build ?"
62