Skip to content

Commit

Permalink
MISC: Auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
For more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 30, 2024
1 parent eeb6479 commit 822a72e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pyedb/configuration/cfg_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(self, pedb, **kwargs):

self.components = [CfgComponent(self, **component) for component in kwargs.get("components", [])]

self.padstacks = None #CfgPadstacks(self, kwargs.get("padstacks", None))
self.padstacks = None # CfgPadstacks(self, kwargs.get("padstacks", None))

self.pin_groups = [CfgPinGroup(self, pin_group) for pin_group in kwargs.get("pin_groups", [])]

Expand Down
2 changes: 1 addition & 1 deletion src/pyedb/configuration/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def _load_stackup(self):
self._pedb.stackup.remove_layer(l)

# update all signal layers
id_name = {i[0]:i[1] for i in self._pedb.stackup.layers_by_id}
id_name = {i[0]: i[1] for i in self._pedb.stackup.layers_by_id}
signal_idx = 0
for l in layers:
if l["type"] == "signal":
Expand Down

0 comments on commit 822a72e

Please sign in to comment.