Minor style update

This commit is contained in:
Miroslav Stampar 2013-01-10 11:54:07 +01:00
parent 7ea846e111
commit ca1c0c2a1d
8 changed files with 20 additions and 20 deletions

View File

@ -40,7 +40,7 @@ class CompleterNG(rlcompleter.Completer):
matches = [] matches = []
n = len(text) n = len(text)
for ns in [ self.namespace ]: for ns in (self.namespace,):
for word in ns: for word in ns:
if word[:n] == text: if word[:n] == text:
matches.append(word) matches.append(word)