Skip to content

Commit

Permalink
fix: Fix to pass lint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
axwitech committed Jun 1, 2022
1 parent b45715e commit d588fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion failure_analysis/failure_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def run(path: str):
raise IOError(f"{path} should be directory but it was not.")
failure, testname, filename, classname = parse_xml(xml_path)

if len(failure)==0:
if len(failure) == 0:
print("NO FAILURES FOUND")
exit()

Expand Down

0 comments on commit d588fec

Please sign in to comment.