From 0c7e240fa166a54178dfb8c8133fc3aad73b62c4 Mon Sep 17 00:00:00 2001 From: kareefardi Date: Sun, 26 Nov 2023 15:57:45 +0200 Subject: [PATCH] it was the array causing the bug not non-optional --- openlane/steps/klayout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlane/steps/klayout.py b/openlane/steps/klayout.py index dd1dc3e5..aa75b1fb 100644 --- a/openlane/steps/klayout.py +++ b/openlane/steps/klayout.py @@ -347,7 +347,7 @@ class DRC(KLayoutStep): ), Variable( "KLAYOUT_DRC_OPTIONS", - Optional[Dict[str, Union[bool, int]]], + Dict[str, Union[bool, int]], "Options availble to KLayout DRC. They vary from one PDK to another.", pdk=True, ),