Skip to content

Commit 8500c7c

Browse files
committed
Fix style issues
1 parent 7949740 commit 8500c7c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

_unittest/test_00_EDB.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,9 @@ def test_82_place_on_lam_with_mold(self):
807807

808808
def test_82b_place_on_bottom_of_lam_with_mold(self):
809809
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+
)
811813
try:
812814
layout = laminateEdb.active_layout
813815
cellInstances = list(layout.CellInstances)
@@ -820,7 +822,9 @@ def test_82b_place_on_bottom_of_lam_with_mold(self):
820822
flipped_stackup=False,
821823
place_on_top=False
822824
)
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+
)
824828
assert not merged_cell.IsNull()
825829
layout = merged_cell.GetLayout()
826830
cellInstances = list(layout.CellInstances)
@@ -830,7 +834,9 @@ def test_82b_place_on_bottom_of_lam_with_mold(self):
830834
if is_ironpython:
831835
res, localOrigin, rotAxisFrom, rotAxisTo, angle, loc = cellInstance.Get3DTransformation()
832836
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+
)
834840
assert res
835841
zeroValue = chipEdb.edb_value(0)
836842
oneValue = chipEdb.edb_value(1)

0 commit comments

Comments
 (0)