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 ...@@ -3,7 +3,7 @@ Views related to operations on course objects
""" """
import json import json
import random import random
import string # pylint: disable=W0402 import string # pylint: disable=deprecated-module
import logging import logging
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
import django.utils import django.utils
......
...@@ -3,7 +3,7 @@ import json ...@@ -3,7 +3,7 @@ import json
import logging import logging
import random import random
import re import re
import string # pylint: disable=W0402 import string # pylint: disable=deprecated-module
import fnmatch import fnmatch
import unicodedata import unicodedata
import urllib import urllib
......
...@@ -7,7 +7,7 @@ This file was inspired by the django-passwords project at https://github.com/dst ...@@ -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) authored by dstufft (https://github.com/dstufft)
""" """
from __future__ import division from __future__ import division
import string # pylint: disable=W0402 import string # pylint: disable=deprecated-module
from django.core.exceptions import ValidationError from django.core.exceptions import ValidationError
from django.utils.translation import ugettext_lazy as _ from django.utils.translation import ugettext_lazy as _
......
...@@ -12,7 +12,7 @@ Provides sympy representation. ...@@ -12,7 +12,7 @@ Provides sympy representation.
# #
import os import os
import string # pylint: disable=W0402 import string # pylint: disable=deprecated-module
import re import re
import logging import logging
import operator import operator
......
""" """
Tests of various permissions levels for the comment client Tests of various permissions levels for the comment client
""" """
import string # pylint: disable=W0402 import string # pylint: disable=deprecated-module
import random import random
from django.contrib.auth.models import User from django.contrib.auth.models import User
......
...@@ -23,7 +23,7 @@ from django.core.validators import validate_email ...@@ -23,7 +23,7 @@ from django.core.validators import validate_email
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from django.http import HttpResponse, HttpResponseBadRequest, HttpResponseForbidden, HttpResponseNotFound from django.http import HttpResponse, HttpResponseBadRequest, HttpResponseForbidden, HttpResponseNotFound
from django.utils.html import strip_tags from django.utils.html import strip_tags
import string # pylint: disable=W0402 import string # pylint: disable=deprecated-module
import random import random
import urllib import urllib
from util.json_request import JsonResponse from util.json_request import JsonResponse
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
import os import os
import sys import sys
import string # pylint: disable=W0402 import string # pylint: disable=deprecated-module
import datetime import datetime
from getpass import getpass from getpass import getpass
import json 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