Commit e045860c by Ned Batchelder

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

parent bba626f4
......@@ -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
......
......@@ -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
......
......@@ -10,7 +10,7 @@
# Provides sympy representation.
import os
import string
import string # pylint: disable=W0402
import re
import logging
import operator
......
import string
import string # pylint: disable=W0402
import random
from django.contrib.auth.models import User
......
......@@ -6,7 +6,7 @@
import os
import sys
import string
import string # pylint: disable=W0402
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