Skip to content

Commit 52c33cd

Browse files
committed
FIX: Fix primitive doc Change value to valuelike in bondwire create
1 parent 7e7d801 commit 52c33cd

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/ansys/edb/core/primitive/bondwire.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@ def create(
4848
bondwire_type: BondwireType,
4949
definition_name: str,
5050
placement_layer: str,
51-
width: Value,
51+
width: ValueLike,
5252
material: str,
5353
start_context: CellInstance,
5454
start_layer_name: str,
55-
start_x: Value,
56-
start_y: Value,
55+
start_x: ValueLike,
56+
start_y: ValueLike,
5757
end_context: CellInstance,
5858
end_layer_name: str,
59-
end_x: Value,
60-
end_y: Value,
59+
end_x: ValueLike,
60+
end_y: ValueLike,
6161
net: NetLike | None,
6262
) -> Bondwire:
6363
"""Create a bondwire.
@@ -72,25 +72,25 @@ def create(
7272
Bondwire definition name.
7373
placement_layer : str
7474
Layer name to create the bondwire on.
75-
width : .Value
75+
width : :term:`ValueLike`
7676
Bondwire width.
7777
material : str
7878
Bondwire material name.
7979
start_context : .CellInstance
8080
Start context :obj:`None` means top-level,.
8181
start_layer_name : str
8282
Name of the start layer.
83-
start_x : .Value
83+
start_x : :term:`ValueLike`
8484
X value of the start point.
85-
start_y : .Value
85+
start_y : :term:`ValueLike`
8686
Y value of the start point.
8787
end_context : .CellInstance
8888
End content :obj:`None` means top-level.
8989
end_layer_name : str
9090
Name of the end layer.
91-
end_x : .Value
91+
end_x : :term:`ValueLike`
9292
X value of the end point.
93-
end_y : .Value
93+
end_y : :term:`ValueLike`
9494
Y value of the end point.
9595
net : :term:`NetLike` or None
9696
Net of the bondwire.

0 commit comments

Comments
 (0)