From a1284162c2629eefa0341e1969aa26dd57f7747b Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Tue, 3 Jan 2023 21:15:38 -0600 Subject: [PATCH] don't print debug --- creeper_adventure/cli/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/creeper_adventure/cli/__init__.py b/creeper_adventure/cli/__init__.py index 76b12d9..b7e0d8e 100644 --- a/creeper_adventure/cli/__init__.py +++ b/creeper_adventure/cli/__init__.py @@ -15,5 +15,4 @@ from ..creeper import main @click.pass_context @click.option("--debug", is_flag=True, help="start with the debug menu open") def creeper_adventure(ctx: click.Context, debug): - print(debug) main(debug)