From 1604a734dd7498775de7b64ccde971b1e364cd7e Mon Sep 17 00:00:00 2001 From: flu0r1ne Date: Sat, 6 May 2023 17:21:17 -0500 Subject: Remove dead code --- src/gpt_chat_cli/chat_colorizer.py | 49 -------------------------------------- 1 file changed, 49 deletions(-) (limited to 'src/gpt_chat_cli/chat_colorizer.py') diff --git a/src/gpt_chat_cli/chat_colorizer.py b/src/gpt_chat_cli/chat_colorizer.py index 168a5b8..3eb7bec 100644 --- a/src/gpt_chat_cli/chat_colorizer.py +++ b/src/gpt_chat_cli/chat_colorizer.py @@ -216,52 +216,3 @@ class ChatColorizer( object ): def finish( self : "ChatColorizer" ): self.lexer.finish() - - -# content = ''' -# Rust code: - -# ```rust -# fn main() { -# let x = 5; -# let y = 10; -# let z = x + y; -# println!("The value of z is {}", z); -# } -# ``` - -# Python code: - -# ```python -# x = 5 -# y = 10 -# z = x + y -# print("The value of z is", z) -# ``` - -# Unknown code: - -# ``` -# x = 5 -# y = 10 -# z = x + y -# print("The value of z is", z) -# ``` - - -# Testing - -# ```python -# x = 5 -# y = 10 -# z = x + y -# print("The value of z is", z) - -# ''' - -# highlighter = ChatColorizer() - -# highlighter.add_chunk(content) -# highlighter.finish() - -# highlighter.print() -- cgit v1.2.3