Skip to content

Commit

Permalink
fix typos in draw_fet script
Browse files Browse the repository at this point in the history
  • Loading branch information
RehabSayed-G committed Feb 4, 2024
1 parent 11369a8 commit 4986698
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cells/klayout/pymacros/cells/draw_fet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@ def draw_nfet(
lbl=lbl,
lbl_lst=sd_lbl,
lbl_valid_len=nf + 1,
index=nf,
index=int(nf),
)
)

Expand Down Expand Up @@ -1807,7 +1807,7 @@ def pfet_deep_nwell(
gf.components.rectangle(
size=(
c_inst.size[0] + (2 * nw_enc_pcmp),
c_inst.size[0] + (2 * nw_enc_pcmp),
c_inst.size[1] + (2 * nw_enc_pcmp),
),
layer=layer["nwell"],
)
Expand Down Expand Up @@ -2052,7 +2052,7 @@ def draw_pfet(
lbl=lbl,
lbl_lst=sd_lbl,
lbl_valid_len=nf + 1,
index=nf,
index=int(nf),
)
)

Expand Down Expand Up @@ -2567,7 +2567,7 @@ def draw_nfet_06v0_nvt(
lbl=lbl,
lbl_lst=sd_lbl,
lbl_valid_len=nf + 1,
index=nf,
index=int(nf),
)
)

Expand Down

0 comments on commit 4986698

Please sign in to comment.