* Adjust review padding

* Fix mse check

* Don't fail when cpu property is missing

* ignore lines without any spaces
This commit is contained in:
Nicolas Mowen
2024-06-17 06:19:16 -06:00
committed by GitHub
parent 89a478ce0a
commit ba6fc0fdb3
5 changed files with 24 additions and 12 deletions

View File

@@ -481,7 +481,7 @@ def logs(service: str):
for rawLine in contents.splitlines():
cleanLine = rawLine.strip()
if len(cleanLine) < 10:
if len(cleanLine) < 10 or " " not in cleanLine:
continue
if dateEnd == 0: