Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
a print statement added
  • Loading branch information
jaanbaaz authored Jul 10, 2024
1 parent e1253d6 commit 113e3ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ def get_issues_by_owner_id(owner, issue):
"""
try:
print('inside get issues')
SUPABASE_DB = SupabaseInterface().get_instance()
response = SUPABASE_DB.client.table('dmp_issue_updates').select('*').eq('owner', owner).eq('issue_number', issue).execute()
if not response.data:
Expand Down Expand Up @@ -335,4 +336,4 @@ def check_secret_key():
app.register_blueprint(v2, url_prefix='/v2')

if __name__ == '__main__':
app.run(debug=True)
app.run(debug=True)

0 comments on commit 113e3ad

Please sign in to comment.