Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
Fix PadGridArray super call
Browse files Browse the repository at this point in the history
  • Loading branch information
blakesmith authored and sethhillbrand committed Aug 12, 2020
1 parent 41426e3 commit e622627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PadArray.py
Expand Up @@ -212,7 +212,7 @@ def __init__(self, pad, nx, ny, px, py, centre=pcbnew.wxPoint(0, 0)):
@param py: pitch in y-direction
@param centre: array centre point
"""
super(PadGridArray, self).__init__(pad)
super().__init__(pad)

self.nx = int(nx)
self.ny = int(ny)
Expand Down

1 comment on commit e622627

@d-jelev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does not work for me

Please sign in to comment.