You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove extra sort when listing out leadership council (#670)
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
Copy file name to clipboardExpand all lines: about.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ <h3>BPD Leadership Council</h3>
82
82
<article>
83
83
<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>
84
84
<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 %}
0 commit comments