TE-2689 Remove useless pylint suppressions part 5

This commit is contained in:
Jeremy Bowman
2018-08-21 10:25:28 -04:00
parent 56392c7f2c
commit d90afa4cde
45 changed files with 60 additions and 75 deletions

View File

@@ -13,4 +13,4 @@ class CoursegraphConfig(AppConfig):
"""
name = 'openedx.core.djangoapps.coursegraph'
from . import tasks # pylint: disable=unused-variable
from . import tasks

View File

@@ -50,7 +50,7 @@ class Command(BaseCommand):
help='dump all--or all specified--courses, ignoring cache',
)
def handle(self, *args, **options): # pylint: disable=unused-argument
def handle(self, *args, **options):
"""
Iterates through each course, serializes them into graphs, and saves
those graphs to neo4j.