Skip to content

Commit

Permalink
Merge pull request #20 from MarounMaroun/bugfix/use_self_readField
Browse files Browse the repository at this point in the history
Fix bug where readField function is called without self
  • Loading branch information
cmars authored Oct 29, 2019
2 parents 9d21fa6 + c0cbba6 commit 351fdfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pystdf/IO.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def readBn(self, header):
blen = self.readField(header, "U1")
bn = []
for i in range(0, blen):
bn.append(readField(header, "B1"))
bn.append(self.readField(header, "B1"))
return bn

def readDn(self, header):
Expand Down

0 comments on commit 351fdfa

Please sign in to comment.