Skip to content

Commit

Permalink
fix: sync member types check
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoesbergen committed May 4, 2024
1 parent 3343772 commit 5a1b2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corvee/src/corvee.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def update_members(access_token):

members = response.json()
for member in members:
type_set = set(member['types'])
type_set = set(member['types'].split(","))
if not Corvee.type_filter.intersection(type_set):
continue

Expand Down

0 comments on commit 5a1b2a3

Please sign in to comment.