Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
itayd committed Aug 21, 2024
1 parent 3751e5c commit bc458ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion slack_support/directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ def load() -> dict[str, list[Person]]: # topic -> list of people

topics = set([topic for person in ppl for topic in person.topics])

return {topic: [person for person in ppl if topic in person.topics] for topic in topics}
return {
topic: [person for person in ppl if topic in person.topics] for topic in topics
}

0 comments on commit bc458ab

Please sign in to comment.