Skip to content

Commit

Permalink
style: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
htamas committed Feb 26, 2024
1 parent c1c2995 commit 0609fd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions precheck/precheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import traceback
import xml.etree.ElementTree as ET

import gdstk
import klayout.db as pya
import klayout.rdb as rdb
from klayout_tools import parse_lyp_layers
import gdstk

PDK_ROOT = os.getenv("PDK_ROOT")
PDK_NAME = os.getenv("PDK_NAME") or "sky130A"
Expand All @@ -28,7 +28,7 @@ class PrecheckFailure(Exception):

def has_sky130_devices(gds: str):
for cell_name in gdstk.read_rawcells(gds):
if cell_name.startswith('sky130_fd_'):
if cell_name.startswith("sky130_fd_"):
return True
return False

Expand Down

0 comments on commit 0609fd4

Please sign in to comment.