Skip to content

Commit 46aadb6

Browse files
praveenkumar911Srijan-SS02jaanbaazShreyash-work-empraveenkumar911
authored
27/alpha (#68)
* Update .dockerignore * Feature/dmp 2025 (#66) (#67) * 1. Added year param in fetching issues * Removed submodule * Readded submodule --------- Co-authored-by: Srijan Srivastava <codeofficialsrijansriv@gmail.com> Co-authored-by: jaanbaaz <106968030+jaanbaaz@users.noreply.github.com> * added alphabetical order --------- Co-authored-by: Srijan Srivastava <codeofficialsrijansriv@gmail.com> Co-authored-by: jaanbaaz <106968030+jaanbaaz@users.noreply.github.com> Co-authored-by: Shreyash-work-em <shreyash.sahare@esmagico.in> Co-authored-by: praveenkumar911 <praveenkumarpalaboyina@Praveens-MacBook-Air.local>
1 parent 459cbc3 commit 46aadb6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ async def get_issues():
105105
'org_name': result.org_name,
106106
'issues': result.issues
107107
})
108-
108+
# Sort response by org_name alphabetically
109+
response.sort(key=lambda x: x['org_name'].lower())
109110
return jsonify({"issues": response})
110111

111112
except Exception as e:

0 commit comments

Comments
 (0)