Skip to content

Commit

Permalink
Update error correction
Browse files Browse the repository at this point in the history
  • Loading branch information
kam17049 authored Nov 9, 2018
1 parent 63c170a commit 303e947
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .gitignore/error correction
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def string2frames(string, fill):
def appendParityColumn(frame, parity):
newFrame = []
for n in frame:
n = [int(k) for k in n]
F1 = e.appendParity(n, parity)
newFrame.append(F1)
return newFrame
Expand Down Expand Up @@ -104,6 +105,3 @@ def splitFrame(frame):
parityColumn.append(row[8])
parityRow = frame[8]
return payload, parityColumn, parityRow



0 comments on commit 303e947

Please sign in to comment.