Spaces:
Running
Running
Revert
Browse files
app.py
CHANGED
|
@@ -26,7 +26,7 @@ def get_release_notes(
|
|
| 26 |
result = ""
|
| 27 |
contributors = {}
|
| 28 |
|
| 29 |
-
for commit in commits:
|
| 30 |
if "Hugging Face" not in commit.user.organizations:
|
| 31 |
if commit.user.name not in contributors:
|
| 32 |
contributors[commit.user.name] = Contributions(
|
|
|
|
| 26 |
result = ""
|
| 27 |
contributors = {}
|
| 28 |
|
| 29 |
+
for commit in commits[::-1]:
|
| 30 |
if "Hugging Face" not in commit.user.organizations:
|
| 31 |
if commit.user.name not in contributors:
|
| 32 |
contributors[commit.user.name] = Contributions(
|