diff --git a/proselint/command_line.py b/proselint/command_line.py index 44a32efea..cdf7a13e4 100644 --- a/proselint/command_line.py +++ b/proselint/command_line.py @@ -13,7 +13,6 @@ import ntpath import re import textblob -import time base_url = "prose.lifelinter.com/" @@ -57,7 +56,6 @@ def lint(path): blob = textblob.TextBlob(f.read()) errors = [] for check in checks: - start = time.time() errors += check(blob) # Sort the errors by line and column number.