Skip to content

Commit

Permalink
Fix module 2 completion
Browse files Browse the repository at this point in the history
  • Loading branch information
fsoest committed Jan 11, 2025
1 parent 6bb8097 commit 9117930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S1/waitinglists/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def module_2_completion(user, fetch=False):
else:
array[name] = [None, False]

return array, len([val for val in array.values() if val[1] == True])
return array, len([val for val in array.values() if val[1] == True]) == 4


def check_modules(user):
Expand Down

0 comments on commit 9117930

Please sign in to comment.