File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1414from libcove .lib .converters import convert_spreadsheet
1515from libcove .config import LibCoveConfig
1616
17+ from memory_profiler import profile
1718
19+ @profile
1820def main ():
1921 parser = argparse .ArgumentParser (
2022 description = "Check the data quality of some 360Giving standard data. This tool currently doesn't support extensions."
@@ -66,7 +68,8 @@ def main():
6668 file_path ,
6769 file_type ,
6870 lib_cove_config ,
69- schema .schema_url ,
71+ schema .schema_file ,
72+ schema .pkg_schema_file
7073 )
7174 )
7275 with open (context ["converted_path" ], "r" ) as fp_data :
@@ -97,7 +100,7 @@ def main():
97100 # We don't actually want to show the json data again
98101 del context ["json_data" ]
99102
100- pprint .pprint (context )
103+ # pprint.pprint(context)
101104
102105
103106if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments