Remove needless 'disable=no-member' pragmas

This commit is contained in:
Ned Batchelder
2015-08-03 16:59:57 -04:00
parent ee0f4b2594
commit f54fe787c6
73 changed files with 144 additions and 186 deletions

View File

@@ -121,7 +121,7 @@ def course_and_time_based_filename_generator(course_id, base_name):
return u"{course_prefix}_{base_name}_{timestamp_str}".format(
course_prefix=course_filename_prefix_generator(course_id),
base_name=get_valid_filename(base_name),
timestamp_str=datetime.now(UTC).strftime("%Y-%m-%d-%H%M%S") # pylint: disable=maybe-no-member
timestamp_str=datetime.now(UTC).strftime("%Y-%m-%d-%H%M%S")
)