Skip to content

Commit 8db1bea

Browse files
committed
Don't drop columns unnecessarily
1 parent 3a91f70 commit 8db1bea

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/bedrock_ge/gi/ags3.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,7 @@ def ags3_to_dfs(
116116
group_data.append(cleaned_data_row)
117117

118118
# Also add the last group's df to the dictionary of AGS dfs
119-
ags3_dfs[group] = pd.DataFrame(group_data, columns=headers).dropna(
120-
axis=1, how="all"
121-
)
119+
ags3_dfs[group] = pd.DataFrame(group_data, columns=headers)
122120

123121
if not group:
124122
print(

0 commit comments

Comments
 (0)