@@ -657,6 +657,8 @@ def get_sax_spectrum(
657
657
self ,
658
658
* ,
659
659
netlist : Netlist ,
660
+ port_in : str ,
661
+ port_out : str ,
660
662
settings : Settings ,
661
663
wls : typing .Sequence [float ],
662
664
request_options : typing .Optional [RequestOptions ] = None ,
@@ -668,6 +670,10 @@ def get_sax_spectrum(
668
670
----------
669
671
netlist : Netlist
670
672
673
+ port_in : str
674
+
675
+ port_out : str
676
+
671
677
settings : Settings
672
678
673
679
wls : typing.Sequence[float]
@@ -689,6 +695,8 @@ def get_sax_spectrum(
689
695
)
690
696
client.pic.circuit.get_sax_spectrum(
691
697
netlist=Netlist(),
698
+ port_in="port_in",
699
+ port_out="port_out",
692
700
settings={"key": "value"},
693
701
wls=[1.1],
694
702
)
@@ -700,6 +708,8 @@ def get_sax_spectrum(
700
708
"netlist" : convert_and_respect_annotation_metadata (
701
709
object_ = netlist , annotation = Netlist , direction = "write"
702
710
),
711
+ "port_in" : port_in ,
712
+ "port_out" : port_out ,
703
713
"settings" : convert_and_respect_annotation_metadata (
704
714
object_ = settings , annotation = Settings , direction = "write"
705
715
),
@@ -1430,6 +1440,8 @@ async def get_sax_spectrum(
1430
1440
self ,
1431
1441
* ,
1432
1442
netlist : Netlist ,
1443
+ port_in : str ,
1444
+ port_out : str ,
1433
1445
settings : Settings ,
1434
1446
wls : typing .Sequence [float ],
1435
1447
request_options : typing .Optional [RequestOptions ] = None ,
@@ -1441,6 +1453,10 @@ async def get_sax_spectrum(
1441
1453
----------
1442
1454
netlist : Netlist
1443
1455
1456
+ port_in : str
1457
+
1458
+ port_out : str
1459
+
1444
1460
settings : Settings
1445
1461
1446
1462
wls : typing.Sequence[float]
@@ -1467,6 +1483,8 @@ async def get_sax_spectrum(
1467
1483
async def main() -> None:
1468
1484
await client.pic.circuit.get_sax_spectrum(
1469
1485
netlist=Netlist(),
1486
+ port_in="port_in",
1487
+ port_out="port_out",
1470
1488
settings={"key": "value"},
1471
1489
wls=[1.1],
1472
1490
)
@@ -1481,6 +1499,8 @@ async def main() -> None:
1481
1499
"netlist" : convert_and_respect_annotation_metadata (
1482
1500
object_ = netlist , annotation = Netlist , direction = "write"
1483
1501
),
1502
+ "port_in" : port_in ,
1503
+ "port_out" : port_out ,
1484
1504
"settings" : convert_and_respect_annotation_metadata (
1485
1505
object_ = settings , annotation = Settings , direction = "write"
1486
1506
),
0 commit comments