Skip to content

Commit 4b87a23

Browse files
authored
remove unnecessary prints
1 parent d6fae90 commit 4b87a23

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scripts/check_assumptions_v2.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,10 @@ def main(project_dir: str, output_dir: Optional[str] = None):
172172

173173
if __name__ == "__main__":
174174
DEFAULT_DIR = str(Path.joinpath(Path(os.path.dirname(os.path.abspath(__file__))).parent, "./theories"))
175-
print(DEFAULT_DIR)
176175
parser = argparse.ArgumentParser(
177176
prog='Check the axiom usage of every lemma/theorem/corollaries in a given directory (default "../theories/")'
178177
)
179178
parser.add_argument("--project_dir", default=DEFAULT_DIR)
180179
parser.add_argument("--output_dir", default=None)
181180
args = parser.parse_args()
182-
print(args)
183181
main(args.project_dir, args.output_dir)

0 commit comments

Comments
 (0)