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