update error logs and impossible exceptions step 6

This commit is contained in:
SowinskiBraeden committed 2022-05-12 12:54:29 -07:00
1 parent e50a779ec8
commit 803bdb8fdd
2 files changed
+33 -11

No files matched your search

+2 -2
View File
@@ -48,8 +48,8 @@ if __name__ == '__main__':
f = open('./output/conflicts.json')
conflicts = json.load(f)
print(f"{len(conflicts)}/{len(sampleStudents)} have errors")
errors = round(len(conflicts) / len(sampleStudents) * 100, 2)
print(f"{len(conflicts['Fatal'])}/{len(sampleStudents)} have errors")
errors = round(len(conflicts["Fatal"]) / len(sampleStudents) * 100, 2)
success = round(100 - errors, 2)
print(f"{errors}% errors")