aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflu0r1ne <flu0r1ne@flu0r1ne.net>2023-05-06 17:21:17 -0500
committerflu0r1ne <flu0r1ne@flu0r1ne.net>2023-05-06 17:21:17 -0500
commit1604a734dd7498775de7b64ccde971b1e364cd7e (patch)
tree333f877686d798bae5e96a10f15aece5ae5dbde0
parent14437275537c9b562f7a57e922306b17826de5b6 (diff)
downloadgpt-chat-cli-1604a734dd7498775de7b64ccde971b1e364cd7e.tar.xz
gpt-chat-cli-1604a734dd7498775de7b64ccde971b1e364cd7e.zip
Remove dead code
-rw-r--r--src/gpt_chat_cli/chat_colorizer.py49
1 files changed, 0 insertions, 49 deletions
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()