From eb165e20b2c64e9f027284e3141b98ddf53891ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20V=C3=A9ril?= Date: Wed, 17 Jun 2020 13:20:47 +0200 Subject: [PATCH] Remove args printing --- tools/datafileBuilder.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/datafileBuilder.py b/tools/datafileBuilder.py index c24ae5e1..33fa77a4 100755 --- a/tools/datafileBuilder.py +++ b/tools/datafileBuilder.py @@ -16,7 +16,6 @@ parser.add_argument('--format',type=str, choices=[t.name for t in list(Format)], parser.add_argument('--debug', action='store_true', help='Debug mode') parser.add_argument('--suffix',type=str,default=None) args = parser.parse_args() -print(args) lines=args.file.readlines() soup=TexSoup(lines) commands=[LaTeX.newCommand(cmd) for cmd in soup.find_all("newcommand")]