From 18ea9f6a720d532f14e9124242b9d3472594dfc5 Mon Sep 17 00:00:00 2001 From: Alex Oladele Date: Sat, 10 May 2025 16:27:27 -0400 Subject: [PATCH] Remove extra sort when listing out leadership council Fixes #652 Because we're already sorting the leadership council when assigning the `council` variable, there's no need to try and sort it again in the later `for` loop --- about.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/about.html b/about.html index 177a1dcb..8cf3d97c 100644 --- a/about.html +++ b/about.html @@ -82,7 +82,7 @@

BPD Leadership Council

We also vet our actions through our Black Python Devs Leadership Council made up of members who serve as Python Community leaders on a local, regional, or global scale.

- {% assign council = site.data.leadership.Council | sort %} {% for leader in council | sort %} + {% assign council = site.data.leadership.Council | sort %} {% for leader in council %}
  • {{ leader }}