Delete last blank lines

This commit is contained in:
José De Freitas 2021-02-06 16:40:50 -05:00 committed by GitHub
parent 3a62510f3f
commit c0b70e2ace
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,9 +16,9 @@ def main():
print("'Content about' errors:\n", '\n'.join(["Error at line {}: there should be a trailing '\\'.".format(i) for i in content_about.content_about_errors_nums]), "\n") print("'Content about' errors:\n", '\n'.join(["Error at line {}: there should be a trailing '\\'.".format(i) for i in content_about.content_about_errors_nums]), "\n")
if len(featured_playlists.featured_playlists_errors_nums) == 0: if len(featured_playlists.featured_playlists_errors_nums) == 0:
print("Every 'Featured playlists' sections are good.", "\n") print("Every 'Featured playlists' sections are good.")
else: else:
print("'Featured playlists' errors:\n", '\n'.join(["Error at line {}: there should be a trailing '\\'.".format(i) for i in featured_playlists.featured_playlists_errors_nums]), "\n") print("'Featured playlists' errors:\n", '\n'.join(["Error at line {}: there should be a trailing '\\'.".format(i) for i in featured_playlists.featured_playlists_errors_nums]))
if __name__ == '__main__': if __name__ == '__main__':
main() main()