From 7b07a1342374df8417e1b4c13caafd6afd8617d5 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Tue, 9 Apr 2024 00:03:39 +0100 Subject: [PATCH] Remove debug print --- sphinx_autobuild/__main__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sphinx_autobuild/__main__.py b/sphinx_autobuild/__main__.py index 0fe4317..eb7f5f7 100644 --- a/sphinx_autobuild/__main__.py +++ b/sphinx_autobuild/__main__.py @@ -68,7 +68,6 @@ def _parse_args(argv): # The Sphinx parser is not considered to be public API, # but as this is a first-party project, we can cheat a little bit. sphinx_args = _get_sphinx_build_parser().parse_args(argv.copy()) - print(f"{sphinx_args.filenames=}") # Parse a second time with just our parser parser = _get_parser()