From 4b3ebe1c8950563011cfe15a57181b740bdd0605 Mon Sep 17 00:00:00 2001 From: Kareem Farid Date: Wed, 24 Jan 2024 16:07:08 +0200 Subject: [PATCH] set default value for placed --- openlane/config/variable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlane/config/variable.py b/openlane/config/variable.py index 83f23d17c..633ee28f1 100644 --- a/openlane/config/variable.py +++ b/openlane/config/variable.py @@ -82,7 +82,7 @@ class Instance: location: Optional[Tuple[Decimal, Decimal]] orientation: Optional[Orientation] - placed: Optional[bool] + placed: bool = False @dataclass