From 7a6444a9cdbc5a4dc6f0038b97efa9a57106e3d9 Mon Sep 17 00:00:00 2001 From: Brian Pugh Date: Tue, 22 Nov 2022 11:33:59 -0800 Subject: [PATCH] remove errnoeous print --- belay/inspect.py | 1 - 1 file changed, 1 deletion(-) diff --git a/belay/inspect.py b/belay/inspect.py index 8d6d00f..0416c52 100644 --- a/belay/inspect.py +++ b/belay/inspect.py @@ -31,7 +31,6 @@ def _dedent_tokenizer(code): (end_line, end_col), # noqa: B007 _, ) in generate_tokens(StringIO(code).readline): - print(f"{token_type=} {string=} {start_line=} {end_line=}") if start_line == 1 and start_col == 0: # First Token if token_type != INDENT: