diff --git a/examples/python-simplechat/client.py b/examples/python-simplechat/client.py
index 63d2f141..3f1d0bb1 100644
--- a/examples/python-simplechat/client.py
+++ b/examples/python-simplechat/client.py
@@ -32,8 +32,6 @@ def chat(messages):
 
 def main():
     messages = []
-    context = (
-        []
     )  # the context stores a conversation history, you can use this to make the model more context aware
     while True:
         user_input = input("Enter a prompt: ")