From 3a314f335ea597f1e1fbd812b3d201e4da420eea Mon Sep 17 00:00:00 2001 From: Goldy <66202304+THEGOLDENPRO@users.noreply.github.com> Date: Wed, 11 Sep 2024 23:29:38 +0100 Subject: [PATCH] fix: how did I fuck up this bad lmao --- osaker/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osaker/__main__.py b/osaker/__main__.py index 056590c..4fc0477 100644 --- a/osaker/__main__.py +++ b/osaker/__main__.py @@ -30,7 +30,7 @@ def execute_code( command_input: Optional[str] = typer.Option( None, "-c", "-i", help = "Passes the text directly to the interpreter as osaker code." ), - debug: bool = typer.Option(help = "Log to the console useful information from the interpreter.") + debug: bool = typer.Option(False, help = "Log to the console useful information from the interpreter.") ): if debug: osaker_logger.setLevel(logging.DEBUG)