diff --git a/agent.py b/agent.py
index 509b127cea1227a94959708d8aee826bb795ab6a..0b4b98ed9015a8669440043b92dd649b2f5d0baf 100644
--- a/agent.py
+++ b/agent.py
@@ -7,10 +7,15 @@ class Agent():
 
     def __init__(self):
 
+        'add variables to construct agent instance and define instance variables'
+
         self.undefined = None
 
 
+
+
     def chooseAction(selfs):
 
+        'implement your strategy here'
+
         return 0
-        
\ No newline at end of file