@@ -102,7 +102,7 @@ def process_highest_language_usage(args, count_data):
102102 file_path = shared .path_join (
103103 PATHS ["data_phase" ], "wikipedia_highest_language_usage.csv"
104104 )
105- shared .data_to_csv (args , top_10 , file_path , PATHS )
105+ shared .data_to_csv (args , top_10 , file_path )
106106
107107
108108def process_least_language_usage (args , count_data ):
@@ -125,7 +125,8 @@ def process_least_language_usage(args, count_data):
125125 file_path = shared .path_join (
126126 PATHS ["data_phase" ], "wikipedia_least_language_usage.csv"
127127 )
128- shared .data_to_csv (args , bottom_10 , file_path , PATHS )
128+ shared .data_to_csv (args , bottom_10 , file_path )
129+
129130
130131def process_language_representation (args , count_data ):
131132 """
@@ -150,7 +151,7 @@ def process_language_representation(args, count_data):
150151 file_path = shared .path_join (
151152 PATHS ["data_phase" ], "wikipedia_language_representation.csv"
152153 )
153- shared .data_to_csv (args , language_counts , file_path , PATHS )
154+ shared .data_to_csv (args , language_counts , file_path )
154155
155156
156157def main ():
0 commit comments