Skip to content

Commit d4c4bd2

Browse files
committed
Bug fix for #417
1 parent a4781f4 commit d4c4bd2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/attributecode/transform.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,8 @@ def process_json_keys(data, renamings, transformer):
153153

154154
if transformer.column_filters:
155155
new_data = list(transformer.filter_columns(new_data))
156+
else:
157+
new_data = list(new_data)
156158

157159
errors = transformer.check_required_columns(new_data)
158160
return new_data, errors

0 commit comments

Comments
 (0)