From 5ec57a221b8c97940777f86ca3bb192d11ad489c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 8 May 2023 07:50:44 -0700 Subject: [PATCH] switch to --no-colorize --- coder.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/coder.py b/coder.py index 0048cea1b..7053d39e0 100755 --- a/coder.py +++ b/coder.py @@ -387,10 +387,11 @@ def main(): help="Only use gpt-3.5-turbo, not gpt-4", ) parser.add_argument( - "-c", - "--colorize", - action="store_true", - help="Enable colorized output of GPT responses", + "--no-color", + action="store_false", + dest="colorize", + default=True, + help="Disable colorized output of GPT responses", ) args = parser.parse_args()