Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
Correct deleted/hidden pin FP name
Browse files Browse the repository at this point in the history
  • Loading branch information
evanshultz committed Sep 30, 2020
1 parent dc2e1b1 commit a49d89b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def __createFootprintVariant(self, device_params, header, dimensions, with_therm
mpn=device_params.get('part_number',''),
pkg=header['device_type'],
pincount=pincount,
pincount2='-{}'.format(pincount2) if 'hidden_pins' in device_params or 'deleted_pins' in device_params else '',
pincount2='_{}N'.format(pincount2) if 'hidden_pins' in device_params or 'deleted_pins' in device_params else '',
size_y=size_y,
size_x=size_x,
pitch=device_params['pitch'],
Expand All @@ -255,7 +255,7 @@ def __createFootprintVariant(self, device_params, header, dimensions, with_therm
mpn=device_params.get('part_number',''),
pkg=header['device_type'],
pincount=pincount,
pincount2='-{}'.format(pincount2) if 'hidden_pins' in device_params or 'deleted_pins' in device_params else '',
pincount2='_{}N'.format(pincount2) if 'hidden_pins' in device_params or 'deleted_pins' in device_params else '',
size_y=size_y,
size_x=size_x,
pitch=device_params['pitch'],
Expand Down

0 comments on commit a49d89b

Please sign in to comment.