Remove previous breakpoint

This commit is contained in:
mrg 2021-09-15 11:43:40 -07:00
parent f3d1c6edc3
commit 11c5a644eb
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ def run_drc(cell_name, gds_name, sp_name=None, extract=True, final_verification=
f = open(resultsfile, "r")
except FileNotFoundError:
debug.error("Unable to load DRC results file from {}. Is klayout set up?".format(resultsfile), 1)
breakpoint()
results = f.readlines()
f.close()
errors=len([x for x in results if "<visited>" in x])