File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 77
88
99def console_to_str (s ):
10- """ From pypa/pip project, pip.backwardwardcompat. License MIT. """
10+ """From pypa/pip project, pip.backwardwardcompat. License MIT."""
1111 try :
1212 return s .decode (console_encoding , 'ignore' )
1313 except UnicodeDecodeError :
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ def clear(self):
148148 self .send_keys ('reset' )
149149
150150 def reset (self ):
151- """Reset and clear pane history. """
151+ """Reset and clear pane history."""
152152
153153 self .cmd ('send-keys' , r'-R \; clear-history' )
154154
Original file line number Diff line number Diff line change 55
66
77def test_resize_pane (session ):
8- """ Test Pane.resize_pane(). """
8+ """Test Pane.resize_pane()."""
99
1010 window = session .attached_window
1111 window .rename_window ('test_resize_pane' )
Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ def test_socket_name(server):
2525
2626
2727def test_socket_path (server ):
28- """ ``-S`` socket_path (alternative path for server socket). """
28+ """``-S`` socket_path (alternative path for server socket)."""
2929 myserver = Server (socket_path = 'test' )
3030
3131 assert myserver .socket_path == 'test'
3232
3333
3434def test_config (server ):
35- """ ``-f`` file for tmux(1) configuration. """
35+ """``-f`` file for tmux(1) configuration."""
3636 myserver = Server (config_file = 'test' )
3737 assert myserver .config_file == 'test'
3838
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def test_attached_pane(session):
9494
9595
9696def test_split_window (session ):
97- """Window.split_window() splits window, returns new Pane, vertical. """
97+ """Window.split_window() splits window, returns new Pane, vertical."""
9898 window_name = 'test split window'
9999 window = session .new_window (window_name = window_name , attach = True )
100100 pane = window .split_window ()
@@ -119,7 +119,7 @@ def test_split_window_shell(session):
119119
120120
121121def test_split_window_horizontal (session ):
122- """Window.split_window() splits window, returns new Pane, horizontal. """
122+ """Window.split_window() splits window, returns new Pane, horizontal."""
123123 window_name = 'test split window'
124124 window = session .new_window (window_name = window_name , attach = True )
125125 pane = window .split_window (vertical = False )
You can’t perform that action at this time.
0 commit comments