Pylint complains if you use string, even if you use it for what its still meant to be used for.

This commit is contained in:
Ned Batchelder
2013-06-20 20:36:51 -04:00
parent bba626f481
commit e045860cb6
5 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ import json
import logging
import random
import re
import string
import string # pylint: disable=W0402
import fnmatch
from textwrap import dedent

View File

@@ -4,7 +4,7 @@ import json
import logging
import random
import re
import string
import string # pylint: disable=W0402
import urllib
import uuid
import time

View File

@@ -10,7 +10,7 @@
# Provides sympy representation.
import os
import string
import string # pylint: disable=W0402
import re
import logging
import operator

View File

@@ -1,4 +1,4 @@
import string
import string # pylint: disable=W0402
import random
from django.contrib.auth.models import User

View File

@@ -6,7 +6,7 @@
import os
import sys
import string
import string # pylint: disable=W0402
import datetime
from getpass import getpass
import json