Remove useless pylint suppressions

This commit is contained in:
Ned Batchelder
2015-11-21 20:39:35 -05:00
parent 7a858b6e09
commit f5d0f3ff55
225 changed files with 329 additions and 438 deletions

View File

@@ -23,7 +23,7 @@ def programs_api_client(api_url, jwt_access_token):
)
def is_cache_enabled_for_programs(): # pylint: disable=invalid-name
def is_cache_enabled_for_programs():
"""Returns a Boolean indicating whether responses from the Programs API
will be cached.
"""

View File

@@ -75,7 +75,7 @@ def get_course_programs_for_dashboard(user, course_keys): # pylint: disable=in
return _get_user_course_programs(programs, course_keys)
def _get_user_course_programs(programs, users_enrolled_course_keys): # pylint: disable=invalid-name
def _get_user_course_programs(programs, users_enrolled_course_keys):
""" Parse the raw programs according to the users enrolled courses and
return the matched course runs.