Skip to content

Commit

Permalink
fix: pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
becdavid committed Dec 20, 2024
1 parent b41e09a commit 92e16d6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cms/djangoapps/contentstore/views/course.py
Original file line number Diff line number Diff line change
Expand Up @@ -1189,9 +1189,9 @@ def settings_handler(request, course_key_string): # lint-amnesty, pylint: disab
'upgrade_deadline': upgrade_deadline,
'mfe_proctored_exam_settings_url': get_proctored_exam_settings_url(course_module.id),
}

course_org = get_course_organization(course_key)
if (course_org):
if course_org:
institutions = get_organization_institutions(course_org)
settings_context.update({'possible_organization_institutions': list(institutions)})
else:
Expand Down
2 changes: 1 addition & 1 deletion requirements/edx/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,7 @@ zipp==3.8.0
# via -r ./requirements/edx/private.txt
-e git+https://github.com/CUCWD/[email protected]#egg=edx-organizations==6.11.1
# via -r ./requirements/edx/private.txt
-e git+https://github.com/CUCWD/[email protected].1#egg=social-auth-backend-bigcommerce==0.1.0
-e git+https://github.com/CUCWD/[email protected].3#egg=social-auth-backend-bigcommerce==0.1.0
# via -r ./requirements/edx/private.txt
# -e git+https://github.com/CUCWD/[email protected]#egg=ora2==4.1.2
-e git+https://github.com/CUCWD/[email protected]#egg=custom-form-app==0.1
Expand Down
2 changes: 1 addition & 1 deletion requirements/edx/development.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1654,7 +1654,7 @@ zipp==3.8.0
# via -r ./requirements/edx/private.txt
-e git+https://github.com/CUCWD/[email protected]#egg=edx-organizations==6.11.1
# via -r ./requirements/edx/private.txt
-e git+https://github.com/CUCWD/[email protected].1#egg=social-auth-backend-bigcommerce==0.1.0
-e git+https://github.com/CUCWD/[email protected].3#egg=social-auth-backend-bigcommerce==0.1.0
# via -r ./requirements/edx/private.txt
-e git+https://github.com/CUCWD/[email protected]#egg=ora2==4.1.2
# via -r ./requirements/edx/private.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/edx/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1523,5 +1523,5 @@ zipp==3.8.0
# via -r ./requirements/edx/private.txt
-e git+https://github.com/CUCWD/[email protected]#egg=bigcommerce==0.22.2
# via -r ./requirements/edx/private.in
-e git+https://github.com/CUCWD/[email protected].1#egg=social-auth-backend-bigcommerce==0.1.0-maple.1
-e git+https://github.com/CUCWD/[email protected].3#egg=social-auth-backend-bigcommerce==0.1.0
# via -r ./requirements/edx/private.in

0 comments on commit 92e16d6

Please sign in to comment.