summaryrefslogtreecommitdiffstats
path: root/ptpython/completer.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:40:54 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:40:54 +0000
commit8188ef390db734738d245336d1d619516ca746d4 (patch)
tree36dc902621c535d2567244ce020d614858c9ddee /ptpython/completer.py
parentAdding upstream version 3.0.16. (diff)
downloadptpython-8188ef390db734738d245336d1d619516ca746d4.tar.xz
ptpython-8188ef390db734738d245336d1d619516ca746d4.zip
Adding upstream version 3.0.19.upstream/3.0.19
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ptpython/completer.py')
-rw-r--r--ptpython/completer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ptpython/completer.py b/ptpython/completer.py
index 9f7e10b..285398c 100644
--- a/ptpython/completer.py
+++ b/ptpython/completer.py
@@ -468,7 +468,7 @@ class DictionaryCompleter(Completer):
"""
def abbr_meta(text: str) -> str:
- " Abbreviate meta text, make sure it fits on one line. "
+ "Abbreviate meta text, make sure it fits on one line."
# Take first line, if multiple lines.
if len(text) > 20:
text = text[:20] + "..."
@@ -621,7 +621,7 @@ class HidePrivateCompleter(Completer):
class ReprFailedError(Exception):
- " Raised when the repr() call in `DictionaryCompleter` fails. "
+ "Raised when the repr() call in `DictionaryCompleter` fails."
try: