Skip to content

Commit

Permalink
Fix missing return in process_new()
Browse files Browse the repository at this point in the history
  • Loading branch information
luk1337 committed Jan 9, 2025
1 parent ae0453c commit dc2b24d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bot/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ def process_new():
)
if resp.status_code != 200:
print(f"Error updating labels - ${resp.json()}")
return
except requests.exceptions.RequestException as e:
print(e)
return
Expand Down

0 comments on commit dc2b24d

Please sign in to comment.