Commit 52093520 by Sarina Canelake

s/pylint: disable=W0402/pylint: disable=deprecated-module/

parent 13946fb8
......@@ -3,7 +3,7 @@ Views related to operations on course objects
"""
import json
import random
import string # pylint: disable=W0402
import string # pylint: disable=deprecated-module
import logging
from django.utils.translation import ugettext as _
import django.utils
......
......@@ -3,7 +3,7 @@ import json
import logging
import random
import re
import string # pylint: disable=W0402
import string # pylint: disable=deprecated-module
import fnmatch
import unicodedata
import urllib
......
......@@ -7,7 +7,7 @@ This file was inspired by the django-passwords project at https://github.com/dst
authored by dstufft (https://github.com/dstufft)
"""
from __future__ import division
import string # pylint: disable=W0402
import string # pylint: disable=deprecated-module
from django.core.exceptions import ValidationError
from django.utils.translation import ugettext_lazy as _
......
......@@ -12,7 +12,7 @@ Provides sympy representation.
#
import os
import string # pylint: disable=W0402
import string # pylint: disable=deprecated-module
import re
import logging
import operator
......
"""
Tests of various permissions levels for the comment client
"""
import string # pylint: disable=W0402
import string # pylint: disable=deprecated-module
import random
from django.contrib.auth.models import User
......
......@@ -23,7 +23,7 @@ from django.core.validators import validate_email
from django.utils.translation import ugettext as _
from django.http import HttpResponse, HttpResponseBadRequest, HttpResponseForbidden, HttpResponseNotFound
from django.utils.html import strip_tags
import string # pylint: disable=W0402
import string # pylint: disable=deprecated-module
import random
import urllib
from util.json_request import JsonResponse
......
......@@ -6,7 +6,7 @@
import os
import sys
import string # pylint: disable=W0402
import string # pylint: disable=deprecated-module
import datetime
from getpass import getpass
import json
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment