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 85f1d67 commit 83d87fdCopy full SHA for 83d87fd
bpython/curtsiesfrontend/repl.py
@@ -1444,12 +1444,10 @@ def number_of_padding_chars_on_current_cursor_line(self):
1444
Should return zero unless there are fullwidth characters. """
1445
full_line = self.current_cursor_line_without_suggestion
1446
line_with_padding = "".join(
1447
- [
1448
- line.s
1449
- for line in paint.display_linize(
1450
- self.current_cursor_line_without_suggestion.s, self.width
1451
- )
1452
- ]
+ line.s
+ for line in paint.display_linize(
+ self.current_cursor_line_without_suggestion.s, self.width
+ )
1453
)
1454
1455
# the difference in length here is how much padding there is
0 commit comments