aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2023-05-06 17:21:17 -0500
committerFurkan Sahin <furkan-dev@proton.me>2023-05-06 17:21:17 -0500
commitb8da6aef349d78296a8627c78ee1186bfba58e54 (patch)
treefa337e15c68f0332c56c81e43f1e40cb0f7afa9c
parent04bfa894058ecbf5302d4b215537c2cda2470a8c (diff)
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()