From 2b4b64b71b3558b8b1fd43b52601157ddada7abe Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Thu, 25 Apr 2019 16:59:36 +0200 Subject: [PATCH] Cleanup generate_authors --- misc/generate_authors.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/misc/generate_authors.py b/misc/generate_authors.py index 8adfc53..51c9694 100644 --- a/misc/generate_authors.py +++ b/misc/generate_authors.py @@ -16,8 +16,6 @@ You probably want to run it this way: """ -import time - import subprocess @@ -48,5 +46,6 @@ def print_authors(): for author in iterate_authors_by_chronological_order(): print(author) -if __name__ == '__main__': - print_authors() \ No newline at end of file + +if __name__ == '__main__': + print_authors()