Merge "Remove six"

This commit is contained in:
Zuul 2020-11-05 07:11:32 +00:00 committed by Gerrit Code Review
commit 774731586e
1 changed files with 2 additions and 2 deletions

View File

@ -16,6 +16,7 @@
"""pylint error checking."""
import io
import json
import os
import re
@ -23,7 +24,6 @@ import sys
from pylint import lint
from pylint.reporters import text
from six.moves import cStringIO as StringIO
# enabled checks
# http://pylint-messages.wikidot.com/all-codes
@ -159,7 +159,7 @@ class ErrorKeys(object):
def run_pylint():
buff = StringIO()
buff = io.StringIO()
reporter = text.ParseableTextReporter(output=buff)
args = ["-rn", "--disable=all", "--enable=" + ",".join(ENABLED_CODES),
"murano"]