I've got the following line:
group_index = apps["special_groups"] == group
From my understanding, group_index is being assigned the value in apps["special_groups"]. Then I see the == operator, but what does it do with the result? Or is it comparing apps["special_groups"] to group first?