From 11c5a644eb2559d1c7f53544786fc267f449da29 Mon Sep 17 00:00:00 2001 From: mrg Date: Wed, 15 Sep 2021 11:43:40 -0700 Subject: [PATCH] Remove previous breakpoint --- compiler/verify/klayout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/verify/klayout.py b/compiler/verify/klayout.py index 808c66a7..4926c4c8 100644 --- a/compiler/verify/klayout.py +++ b/compiler/verify/klayout.py @@ -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 "" in x])