Remove some errant semicolons from report script

Found by autopep8.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I79004eda034aa3549f954edc49092582b946fad5
diff --git a/tof-voters/libvoters/subcmd/report.py b/tof-voters/libvoters/subcmd/report.py
index c9e096c..13726d9 100644
--- a/tof-voters/libvoters/subcmd/report.py
+++ b/tof-voters/libvoters/subcmd/report.py
@@ -21,11 +21,11 @@
         results = {}
 
         if not os.path.isfile(commits_fp):
-            print("Missing commits.json; run analyze-commits?");
+            print("Missing commits.json; run analyze-commits?")
             return 1
 
         if not os.path.isfile(reviews_fp):
-            print("Missing reviews.json; run analyze-reviews?");
+            print("Missing reviews.json; run analyze-reviews?")
             return 1
 
         with open(commits_fp, "r") as commits_file: