We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b4eb4 commit 49e60b8Copy full SHA for 49e60b8
flattentool/input.py
@@ -254,6 +254,8 @@ def do_unflatten(self):
254
# We want to ignore data in earlier columns, so we look
255
# through the data backwards
256
for i, actual_heading in enumerate(reversed(actual_headings)):
257
+ if actual_heading is None:
258
+ continue
259
if actual_heading in found:
260
found[actual_heading].append((last_col-i)-1)
261
else:
0 commit comments