Fix quality failures with pylint 2.13.5 (#30197)

* build: update pylint-checks ci workflow
* fix: fix quality failures with new pylint version
* chore: remove pylint constraint
* chore: Updating Python Requirements (#30196)
Co-authored-by: edX requirements bot <49161187+edx-requirements-bot@users.noreply.github.com>
This commit is contained in:
Usama Sadiq
2022-04-07 13:59:44 +05:00
committed by GitHub
parent c884a3a995
commit 80f9f1de7a
15 changed files with 28 additions and 28 deletions

View File

@@ -963,9 +963,9 @@ def bulk_beta_modify_access(request, course_id):
# Tabulate the action result of this email address
results.append({
'identifier': identifier,
'error': error,
'userDoesNotExist': user_does_not_exist,
'is_active': user_active
'error': error, # pylint: disable=used-before-assignment
'userDoesNotExist': user_does_not_exist, # pylint: disable=used-before-assignment
'is_active': user_active # pylint: disable=used-before-assignment
})
response_payload = {