From 9c6446ab3630849bc798a886e91b17310b33c3a9 Mon Sep 17 00:00:00 2001 From: Thomas Kramer Date: Sun, 12 Oct 2025 15:25:21 +0000 Subject: [PATCH] fix method name and spelling --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index b2b5f5b..34c80c1 100644 --- a/test.py +++ b/test.py @@ -79,7 +79,7 @@ class Layout: assert isinstance(cell, kdb.Cell) return cell.parent_cells() - def num_dependent_cells(self, cell: kdb.Cell): + def num_dependencies_cells(self, cell: kdb.Cell): assert isinstance(cell, kdb.Cell) return cell.child_cells() @@ -116,7 +116,7 @@ chip = Layout(layout) # Call a simple function provided by the LibrEDA Python library. ldb.print_hierarchy(chip) -# Test accessing instane locations. +# Test accessing instance locations. for cell_id in chip.each_cell_vec(): for inst_id in chip.each_cell_instance_vec(cell_id): tf = chip.get_transform(inst_id)