Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Signed-off-by: Kareem Farid <[email protected]>
  • Loading branch information
kareefardi committed Oct 2, 2024
1 parent 63cf152 commit e017f5e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions openlane/config/pdk_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def migrate_old_config(config: Mapping[str, Any]) -> Dict[str, Any]:
if "SYNTH_DRIVING_CELL_PIN" in new:
del new["SYNTH_DRIVING_CELL"]
del new["SYNTH_DRIVING_CELL_PIN"]
new[
"SYNTH_DRIVING_CELL"
] = f"{config['SYNTH_DRIVING_CELL']}/{config['SYNTH_DRIVING_CELL_PIN']}"
new["SYNTH_DRIVING_CELL"] = (
f"{config['SYNTH_DRIVING_CELL']}/{config['SYNTH_DRIVING_CELL_PIN']}"
)

# 2. Migrate SYNTH_TIE{HI,LO}_CELL
if "SYNTH_TIEHI_PORT" in new:
Expand Down Expand Up @@ -171,9 +171,9 @@ def migrate_old_config(config: Mapping[str, Any]) -> Dict[str, Any]:

del new["KLAYOUT_DRC_TECH_SCRIPT"]

new[
"SYNTH_CLK_DRIVING_CELL"
] = f"{config['SYNTH_CLK_DRIVING_CELL']}/{config['SYNTH_DRIVING_CELL_PIN']}"
new["SYNTH_CLK_DRIVING_CELL"] = (
f"{config['SYNTH_CLK_DRIVING_CELL']}/{config['SYNTH_DRIVING_CELL_PIN']}"
)

# x3. Timing Corners
lib_sta: Dict[str, List[str]] = {}
Expand Down

0 comments on commit e017f5e

Please sign in to comment.