Skip to content

Commit 18ea9f6

Browse files
committed
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
1 parent b172fcd commit 18ea9f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

about.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ <h3>BPD Leadership Council</h3>
8282
<article>
8383
<p>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.</p>
8484
<div>
85-
{% assign council = site.data.leadership.Council | sort %} {% for leader in council | sort %}
85+
{% assign council = site.data.leadership.Council | sort %} {% for leader in council %}
8686
<ul>
8787
<li><strong>{{ leader }}</strong></li>
8888
</ul>

0 commit comments

Comments
 (0)