autopep8
[rainbowstream.git] / rainbowstream / interactive.py
index 2b61107ba691966a28bda728e262119955efec22..e27c17780e3cd7d1256bb5b52503d9c68f79e14b 100644 (file)
@@ -1,7 +1,8 @@
 import readline
 
+
 class RainbowCompleter(object):
-    
+
     def __init__(self, options):
         """
         Init
@@ -16,12 +17,12 @@ class RainbowCompleter(object):
         response = None
         if state == 0:
             if text:
-                self.matches = [s 
+                self.matches = [s
                                 for s in self.options
                                 if s and s.startswith(text)]
             else:
                 self.matches = self.options[:]
-        
+
         try:
             response = self.matches[state]
         except IndexError: