summaryrefslogtreecommitdiffstats
path: root/litecli/completion_refresher.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--litecli/completion_refresher.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/litecli/completion_refresher.py b/litecli/completion_refresher.py
index 9602070..bf36d03 100644
--- a/litecli/completion_refresher.py
+++ b/litecli/completion_refresher.py
@@ -7,7 +7,6 @@ from .sqlexecute import SQLExecute
class CompletionRefresher(object):
-
refreshers = OrderedDict()
def __init__(self):
@@ -65,7 +64,7 @@ class CompletionRefresher(object):
# if DB is memory, needed to use same connection
executor = sqlexecute
else:
- # Create a new sqlexecute method to popoulate the completions.
+ # Create a new sqlexecute method to populate the completions.
executor = SQLExecute(e.dbname)
# If callbacks is a single function then push it into a list.
@@ -79,7 +78,7 @@ class CompletionRefresher(object):
self._restart_refresh.clear()
break
else:
- # Break out of while loop if the for loop finishes natually
+ # Break out of while loop if the for loop finishes naturally
# without hitting the break statement.
break