Skip to content

Commit 40f111e

Browse files
committed
tools: cove_checks: Update the common_checks_360 arguments for new dqt
1 parent f318c69 commit 40f111e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tools/cove_checks.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
from libcove.lib.converters import convert_spreadsheet
1515
from libcove.config import LibCoveConfig
1616

17+
from memory_profiler import profile
1718

19+
@profile
1820
def 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

103106
if __name__ == "__main__":

0 commit comments

Comments
 (0)