@@ -807,7 +807,9 @@ def test_82_place_on_lam_with_mold(self):
807
807
808
808
def test_82b_place_on_bottom_of_lam_with_mold (self ):
809
809
laminateEdb = Edb (os .path .join (local_path , "example_models" , "lam_with_mold.aedb" ), edbversion = desktop_version )
810
- chipEdb = Edb (os .path .join (local_path , "example_models" , "chip_flipped_stackup.aedb" ), edbversion = desktop_version )
810
+ chipEdb = Edb (
811
+ os .path .join (local_path , "example_models" , "chip_flipped_stackup.aedb" ), edbversion = desktop_version
812
+ )
811
813
try :
812
814
layout = laminateEdb .active_layout
813
815
cellInstances = list (layout .CellInstances )
@@ -820,7 +822,9 @@ def test_82b_place_on_bottom_of_lam_with_mold(self):
820
822
flipped_stackup = False ,
821
823
place_on_top = False
822
824
)
823
- merged_cell = chipEdb .edb .Cell .Cell .FindByName (chipEdb .db , chipEdb .edb .Cell .CellType .CircuitCell , 'lam_with_mold' )
825
+ merged_cell = chipEdb .edb .Cell .Cell .FindByName (
826
+ chipEdb .db , chipEdb .edb .Cell .CellType .CircuitCell , 'lam_with_mold'
827
+ )
824
828
assert not merged_cell .IsNull ()
825
829
layout = merged_cell .GetLayout ()
826
830
cellInstances = list (layout .CellInstances )
@@ -830,7 +834,9 @@ def test_82b_place_on_bottom_of_lam_with_mold(self):
830
834
if is_ironpython :
831
835
res , localOrigin , rotAxisFrom , rotAxisTo , angle , loc = cellInstance .Get3DTransformation ()
832
836
else :
833
- res , localOrigin , rotAxisFrom , rotAxisTo , angle , loc = cellInstance .Get3DTransformation (None , None , None , None , None )
837
+ res , localOrigin , rotAxisFrom , rotAxisTo , angle , loc = cellInstance .Get3DTransformation (
838
+ None , None , None , None , None
839
+ )
834
840
assert res
835
841
zeroValue = chipEdb .edb_value (0 )
836
842
oneValue = chipEdb .edb_value (1 )
0 commit comments