Commit 61a35f8f authored by Bram Schoenmakers's avatar Bram Schoenmakers

Suppress some pylint errors caused by prompt-toolkit.

parent ddae15e2
......@@ -54,6 +54,8 @@ class PromptApplication(CLIApplicationBase):
self.todofile = TodoFile.TodoFile(self.path)
self.todolist = TodoList.TodoList(self.todofile.read())
# suppress upstream issue with Python 2.7
# pylint: disable=no-value-for-parameter
completer = TopydoCompleter(self.todolist)
history = History()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment