Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
louislam committed Mar 20, 2023
1 parent 972ae60 commit 1973db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extra/sort-contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lines = lines.filter((line) => line !== "");
lines = [ ...new Set(lines) ];

// Remove @weblate and @UptimeKumaBot
lines = lines.filter((line) => line !== "@weblate" && line !== "@UptimeKumaBot");
lines = lines.filter((line) => line !== "@weblate" && line !== "@UptimeKumaBot" && line !== "@louislam");

// Sort the lines
lines = lines.sort();
Expand Down

0 comments on commit 1973db2

Please sign in to comment.