diff -r f358a45c148e -r 4ec6aa30a1f8 python-intro.py
--- a/python-intro.py
+++ b/python-intro.py
@@ -2,14 +2,18 @@
     """ Returns true if the line has data
     and false otherwise (header, comments, etc)"""
 
+    answer = True
+
     if line.startswith('#'):
         # skip comments
-        return False
+        answer = False
     elif line.startswith('D'):
         # skip title row
-        return False
+        answer = False
     else:
-        return True
+        answer = True
+    return answer
+
 
 def count_marlins(data):
     """Receives a line of data and returns the count of Marlins in that line (zero otherwise)"""
