You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 66 of util.py, if tmp > len(row):, I think the intention is to compare tmp against the length of the row just after reading a line of the data file.
However, in line 60, row is updated to be a subarray of length tmp. This is the else clause of tmp == len(row).
This means line 66 will never be satisfied.
The text was updated successfully, but these errors were encountered:
In line 66 of util.py,
if tmp > len(row):
, I think the intention is to compare tmp against the length of the row just after reading a line of the data file.However, in line 60, row is updated to be a subarray of length tmp. This is the else clause of
tmp == len(row)
.This means line 66 will never be satisfied.
The text was updated successfully, but these errors were encountered: