From 04045cf67250a117531af5159c16d594c893e3c6 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Tue, 26 Nov 2019 13:24:19 -0800 Subject: [PATCH] Fix syntax error --- compiler/pgates/ptx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/pgates/ptx.py b/compiler/pgates/ptx.py index 3cdf1a7c..64e6a893 100644 --- a/compiler/pgates/ptx.py +++ b/compiler/pgates/ptx.py @@ -153,7 +153,7 @@ class ptx(design.design): # Well enclosure of active, ensure minwidth as well well_name = "{}well".format(self.well_type) - if layer[well_name]): + if layer[well_name]: self.cell_well_width = max(self.active_width + 2 * self.well_enclose_active, self.well_width) self.cell_well_height = max(self.tx_width + 2 * self.well_enclose_active,