Skip to content

Commit 5e7c8e6

Browse files
committed
renamed data_to_csv as dataframe_to_csv
1 parent 5868ca8 commit 5e7c8e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/2-process/smithsonian_process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def process_totals_by_units(args, count_data):
9393
file_path = shared.path_join(
9494
PATHS["data_phase"], "smithsonian_totals_by_units.csv"
9595
)
96-
shared.data_to_csv(args, data, file_path)
96+
shared.dataframe_to_csv(args, data, file_path)
9797

9898

9999
def process_totals_by_records(args, count_data):
@@ -148,7 +148,7 @@ def process_totals_by_records(args, count_data):
148148
file_path = shared.path_join(
149149
PATHS["data_phase"], "smithsonian_totals_by_records.csv"
150150
)
151-
shared.data_to_csv(args, data, file_path)
151+
shared.dataframe_to_csv(args, data, file_path)
152152

153153

154154
def main():

0 commit comments

Comments
 (0)