From 7d1b1d354d3b2e84135778c787441989a1df4b69 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 31 Oct 2016 09:10:52 +0100 Subject: [PATCH] Remove duplicated docstrings --- qutebrowser/mainwindow/prompt.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/qutebrowser/mainwindow/prompt.py b/qutebrowser/mainwindow/prompt.py index 7cc476e48..2cd61ecac 100644 --- a/qutebrowser/mainwindow/prompt.py +++ b/qutebrowser/mainwindow/prompt.py @@ -522,7 +522,6 @@ class LineEditPrompt(_BasePrompt): return True def _allowed_commands(self): - """Get the commands we could run as response to this message.""" return [('prompt-accept', 'Accept'), ('leave-mode', 'Abort')] @@ -631,7 +630,6 @@ class FilenamePrompt(_BasePrompt): self._insert_path(idx, clicked=False) def _allowed_commands(self): - """Get the commands we could run as response to this message.""" return [('prompt-accept', 'Accept'), ('leave-mode', 'Abort')]