Merge pull request #2997 from edx/zoldak/fix-pragma-pep8

Fix pylint disable pragmas that were pep8 violations
This commit is contained in:
Jay Zoldak
2014-03-20 13:56:00 -04:00
55 changed files with 105 additions and 105 deletions

View File

@@ -9,7 +9,7 @@ from os.path import abspath, realpath, dirname, join as joinpath
from django.core.exceptions import SuspiciousOperation
import logging
log = logging.getLogger(__name__) #pylint: disable=C0103
log = logging.getLogger(__name__) # pylint: disable=C0103
def resolved(rpath):
"""

View File

@@ -2,10 +2,10 @@
"""
Tests of the Capa XModule
"""
#pylint: disable=C0111
#pylint: disable=R0904
#pylint: disable=C0103
#pylint: disable=C0302
# pylint: disable=C0111
# pylint: disable=R0904
# pylint: disable=C0103
# pylint: disable=C0302
import datetime
import json

View File

@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
#pylint: disable=W0212
# pylint: disable=W0212
"""Test for Video Xmodule functional logic.
These test data read from xml, not from mongo.

View File

@@ -1,5 +1,5 @@
# disable missing docstring
#pylint: disable=C0111
# pylint: disable=C0111
import unittest