Remove print statement

This commit is contained in:
Ryan Roden-Corrent 2017-06-07 08:15:10 -04:00
parent 309b6ba32c
commit f8325cbbc1

View File

@ -137,7 +137,6 @@ def bind(_key):
_key: the key being bound. _key: the key being bound.
""" """
# TODO: offer a 'Current binding' completion based on the key. # TODO: offer a 'Current binding' completion based on the key.
print(_key)
model = completionmodel.CompletionModel(column_widths=(20, 60, 20)) model = completionmodel.CompletionModel(column_widths=(20, 60, 20))
cmdlist = _get_cmd_completions(include_hidden=True, include_aliases=True) cmdlist = _get_cmd_completions(include_hidden=True, include_aliases=True)
model.add_category(listcategory.ListCategory("Commands", cmdlist)) model.add_category(listcategory.ListCategory("Commands", cmdlist))