Skip to content

Commit a459860

Browse files
committed
🐛 Rm print
1 parent 0e977cc commit a459860

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

adoc_math/__main__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ def parse_args():
7575
def main():
7676
args = parse_args()
7777

78-
print(args)
79-
8078
# The idea here is that the arguments specified in `parse_args` will have value
8179
# None if they are not specified by the user. If we just use something like `i_impl.AdocMath(default_alignment=args.default_alignment`
8280
# etc (for all other arguments), then we'll lose the default values

adoc_math/_common/e_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def run_cmd(
2121
stdin=bytes(),
2222
raise_on_error=True,
2323
) -> Tuple[StdOut, StdErr]:
24-
print(f"Running {cmd}...")
24+
logger.info(f"Running {cmd}...")
2525
process = subprocess.Popen(
2626
cmd,
2727
stdout=subprocess.PIPE,

0 commit comments

Comments
 (0)