Skip to content

Commit

Permalink
Fix bug where readField function is called without self
Browse files Browse the repository at this point in the history
  • Loading branch information
MarounMaroun committed Oct 29, 2019
1 parent 9d21fa6 commit c0cbba6
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 c0cbba6

Please sign in to comment.