We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ac6f13 commit 7f4abb2Copy full SHA for 7f4abb2
bpython/curtsiesfrontend/repl.py
@@ -2015,11 +2015,10 @@ def key_help_text(self):
2015
"yank from buffer",
2016
"cut to buffer",
2017
)
2018
- pairs = []
2019
- pairs.append(
2020
- ["complete history suggestion", "right arrow at end of line"]
2021
- )
2022
- pairs.append(["previous match with current line", "up arrow"])
+ pairs = [
+ ["complete history suggestion", "right arrow at end of line"],
+ ["previous match with current line", "up arrow"],
+ ]
2023
for functionality, key in (
2024
(attr[:-4].replace("_", " "), getattr(self.config, attr))
2025
for attr in self.config.__dict__
0 commit comments