s/pylint: disable=W0104/pylint: disable=pointless-statement/

This commit is contained in:
Sarina Canelake
2014-11-30 18:07:06 -05:00
parent 520935209d
commit 3c364193bb
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ Module with code executed during Studio startup
from django.conf import settings
# Force settings to run so that the python path is modified
settings.INSTALLED_APPS # pylint: disable=W0104
settings.INSTALLED_APPS # pylint: disable=pointless-statement
from django_startup import autostartup
from monkey_patch import django_utils_translation

View File

@@ -356,7 +356,7 @@ class ParseAugmenter(object):
sum_term = Group(sum_term)("sum")
# Finish the recursion.
expr << sum_term # pylint: disable=W0104
expr << sum_term # pylint: disable=pointless-statement
self.tree = (expr + stringEnd).parseString(self.math_expr)[0]
def reduce_tree(self, handle_actions, terminal_converter=None):

View File

@@ -5,7 +5,7 @@ Module for code that should run during LMS startup
from django.conf import settings
# Force settings to run so that the python path is modified
settings.INSTALLED_APPS # pylint: disable=W0104
settings.INSTALLED_APPS # pylint: disable=pointless-statement
from django_startup import autostartup
import edxmako