Fixed new pylint warnings.

use generator in any/all()
disable not-callable warnings
disable no-member warnings
Suppressed smaller pylint warnings
Pin edx-proctoring==3.5.0
This commit is contained in:
usamasadiq
2021-02-22 12:42:26 +05:00
parent 23d87e253f
commit 96f0915b0f
44 changed files with 73 additions and 86 deletions

View File

@@ -5,8 +5,6 @@ import json
from unittest import mock
import pytest
import mock
import six
from django.core.exceptions import ObjectDoesNotExist
from opaque_keys import InvalidKeyError

View File

@@ -9,8 +9,6 @@ import unittest
from unittest import mock
import pytest
import mock
import six
from django.contrib.auth.models import User # lint-amnesty, pylint: disable=imported-auth-user
from django.core.exceptions import MultipleObjectsReturned
from django.test import TestCase