From 9a756afaf60874e62102b6dc3d7790bbbe83c33b Mon Sep 17 00:00:00 2001 From: "Nathan L. Conrad" Date: Mon, 3 Aug 2020 13:50:32 -0500 Subject: [PATCH] Clean up minor style descrepency in plot.py --- plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.py b/plot.py index 66440a1..b86c1f9 100755 --- a/plot.py +++ b/plot.py @@ -27,9 +27,9 @@ class _PadExclusion: if ((self.__name is None or self.__name == self.__normalize_name(pad.GetName())) and pad.IsOnLayer(layer_num)): - layers = LSET() pad_mask = int(pad.GetLayerSet().FmtHex().replace('_', ''), 16) pad_hex = hex(pad_mask & layer_mask) + layers = LSET() layers.ParseHex(pad_hex, len(pad_hex)) pad.SetLayerSet(layers) count += 1