Skip to content

Commit 71732aa

Browse files
Applied latest black (space around docstrings).
1 parent b0083d0 commit 71732aa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+231
-231
lines changed

examples/full-screen/calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def accept(buff):
7070
@kb.add("c-c")
7171
@kb.add("c-q")
7272
def _(event):
73-
" Pressing Ctrl-Q or Ctrl-C will exit the user interface. "
73+
"Pressing Ctrl-Q or Ctrl-C will exit the user interface."
7474
event.app.exit()
7575

7676
# Style.

examples/full-screen/hello-world.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
@kb.add("c-c")
2929
def _(event):
30-
" Quit when control-c is pressed. "
30+
"Quit when control-c is pressed."
3131
event.app.exit()
3232

3333

examples/full-screen/pager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def get_statusbar_text():
7878
@bindings.add("c-c")
7979
@bindings.add("q")
8080
def _(event):
81-
" Quit. "
81+
"Quit."
8282
event.app.exit()
8383

8484

examples/full-screen/simple-demos/alignment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
@kb.add("q")
4646
def _(event):
47-
" Quit application. "
47+
"Quit application."
4848
event.app.exit()
4949

5050

examples/full-screen/simple-demos/autocompletion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
@kb.add("q")
8585
@kb.add("c-c")
8686
def _(event):
87-
" Quit application. "
87+
"Quit application."
8888
event.app.exit()
8989

9090

examples/full-screen/simple-demos/colorcolumn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
@kb.add("q")
4949
def _(event):
50-
" Quit application. "
50+
"Quit application."
5151
event.app.exit()
5252

5353

examples/full-screen/simple-demos/cursorcolumn-cursorline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
@kb.add("q")
4545
def _(event):
46-
" Quit application. "
46+
"Quit application."
4747
event.app.exit()
4848

4949

examples/full-screen/simple-demos/float-transparency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171

7272
@kb.add("q")
7373
def _(event):
74-
" Quit application. "
74+
"Quit application."
7575
event.app.exit()
7676

7777

examples/full-screen/simple-demos/floats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100

101101
@kb.add("q")
102102
def _(event):
103-
" Quit application. "
103+
"Quit application."
104104
event.app.exit()
105105

106106

examples/full-screen/simple-demos/focus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
@kb.add("q")
5454
def _(event):
55-
" Quit application. "
55+
"Quit application."
5656
event.app.exit()
5757

5858

0 commit comments

Comments
 (0)