Fix issue reported by mypy

This commit is contained in:
Adrián Chaves 2025-03-19 20:19:14 +01:00
parent debab6cff6
commit dfc7cd58e7
1 changed files with 2 additions and 2 deletions

View File

@ -107,10 +107,10 @@ class Command(ScrapyCommand):
for method in sorted(methods):
print(f" * {method}")
else:
start = time.time()
start_time = time.time()
self.crawler_process.start()
stop = time.time()
result.printErrors()
result.printSummary(start, stop)
result.printSummary(start_time, stop)
self.exitcode = int(not result.wasSuccessful())